red-ray / index-prevention
This package allows preventing indexing of a website during development
1.0
2021-03-05 12:16 UTC
Requires
- php: ^7.0|^8.0
- illuminate/support: ^7.0|^8.0
This package is not auto-updated.
Last update: 2025-03-30 08:38:05 UTC
README
Publish assets
php artisan vendor:publish --provider="RedRay\IndexPrevention\RedRayIndexPreventionProvider"
Set .env variable
...
SHOULD_PREVENT_INDEX=true
...
Add the middleware to app/Http/Kernel.php
protected $middlewareGroups = [
'web' => [
...
\RedRay\IndexPrevention\Middleware\PreventContentIndex::class
...
],
];