laravel-redirector maintained by ntpages
Laravel Redirector
A simple module for managing your redirects. Can be useful on sites that are migrating from legacy routes or just have a CMS that needs to manage the redirects.
First steps
- Install the package
composer require ntpages/laravel-redirector - Register service provider
Ntpages\LaravelRedirector\Provider::classin theconfig/app.php - Run the migrations
php artisan migrate - Publish package files
php artisan vendor:publish - Use the middleware, official laravel docs about that.
Ntpages\LaravelRedirector\RedirectMiddleware::class
Usage
todo