Download the PHP package accentinteractive/laravel-ignore-extensions without Composer
On this page you can find all versions of the php package accentinteractive/laravel-ignore-extensions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download accentinteractive/laravel-ignore-extensions
More information about accentinteractive/laravel-ignore-extensions
Files in accentinteractive/laravel-ignore-extensions
Package laravel-ignore-extensions
Short Description Do not process URLs with a extensions like .jpg, .png et cetera.
License MIT
Homepage https://github.com/accentinteractive/laravel-ignore-extensions
Informations about the package laravel-ignore-extensions
Return 404 on all URLs that have certain extensions
If your application has a fallback route like Route::get({slug})
, call to non-existent assets are processed by Laravel - causing strain on your server. If a lot of assets are not presenent (like on a staging server) this can even bring your application to a grinding halt.
This package contains middleware that aborts the request if it contains certain extensions, that you set in your .env file.
Installation
Step 1: Install the package via composer:
Step 2: Make sure to register the Middleware.
To use it on all requests, add it as the first option to the web
section under $middlewareGroups
in file app/Http/Kernel.php.
To use it on specific requests, add it to any group or to the protected $middleware
property in file app/Http/Kernel.php.
Step 3: Optionally publish the config file with:
Config for this package is stored in config('laravel-ignore-extensions')
Usage
The package uses auto discover. The package uses a middleware class that does the checking and aborting.
Config settings
Setting extensions that should return a 404
You can set the extensions to check for in the published config file, or by setting this values in .env. It defaults to 'jpg|gif|png|jpeg|txt|html|pdf|css|js'
Testing
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Joost van Veen
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.
All versions of laravel-ignore-extensions with dependencies
guzzlehttp/guzzle Version ^7.5
illuminate/console Version ^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/filesystem Version ^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/support Version ^6.0|^7.0|^8.0|^9.0|^10.0