ntpages / laravel-redirector
This package is abandoned and no longer maintained.
No replacement package was suggested.
Laravel package for redirecting pages
dev-master
2021-01-27 12:49 UTC
Requires
- php: ^7.1.3
- ext-curl: *
- laravel/framework: ^5.7.25|^6|^7|^8
This package is auto-updated.
Last update: 2021-09-27 14:09:25 UTC
README
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