Looking to hire Laravel developers? Try LaraJobs

laravel-redirector maintained by ntpages

Description
Laravel package for redirecting pages
Author
Last update
2021/01/27 13:49 (dev-master)
License
Links
Downloads
3 464
Tags

Comments
comments powered by Disqus

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

  1. Install the package
    composer require ntpages/laravel-redirector
  2. Register service provider
    Ntpages\LaravelRedirector\Provider::class in the config/app.php
  3. Run the migrations
    php artisan migrate
  4. Publish package files
    php artisan vendor:publish
  5. Use the middleware, official laravel docs about that.
    Ntpages\LaravelRedirector\RedirectMiddleware::class

Usage

todo