Download the PHP package aw-studio/laravel-redirects without Composer
On this page you can find all versions of the php package aw-studio/laravel-redirects. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aw-studio/laravel-redirects
More information about aw-studio/laravel-redirects
Files in aw-studio/laravel-redirects
Package laravel-redirects
Short Description An easy solution to handle redirects in your Laravel application
License MIT
Informations about the package laravel-redirects
Laravel redirects
This package provides an easy way to create and manage redirects in your Laravel application.
Installation
Install the package via Composer:
Publish the packages migrations and config:
Run the migration
Add AwStudio\Redirects\Middleware\RedirectRoutesMiddleware
to /app/Http/Kernel.php
:
Usage
Using database redirects
The provided Redirect
model stores the following attributes:
- from_url
- to_url
- http_status_code (default 301)
- active (default true)
With this you may create redirects like this:
Using config redirects
If you need to configure some (static) redirects you may do so in the config/redirects.php
.
By default every redirect from the configuration file is handled as a 301
.
You may however overwrite it like this:
Using URL parameters
Both, config and database redirects, support Laravel route parameters:
Credits
This package is inspired by and based on the discontinued Neurony/laravel-redirects package and also takes inspiration from spatie/laravel-missing-page-redirector.
All versions of laravel-redirects with dependencies
illuminate/database Version ^8.0|^9.0|^10.0|^11.0
illuminate/support Version ^8.0|^9.0|^10.0|^11.0