Download the PHP package lidai/laravel-redirects without Composer
On this page you can find all versions of the php package lidai/laravel-redirects. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-redirects
Nested redirects for Laravel
- Overview
- Installation
- Usage
Overview
This package allows you to create simple or multiple nested redirects for your Laravel applications.
This package can be useful from an SEO perspective, when in your application, you have URLs that have the potential of being modified.
Example of the dynamic redirecting logic:
-
Let's assume you have an URL called
/original
- You create a redirect from
/original
to/modified
Accessing
/original
will redirect to/modified
- You create another redirect from
/modified
to/modified-again
Accessing
/modified
will redirect to/modified-again
AND
Accessoing/original
will redirect to/modified-again
- You create another redirect from
/modified-again
to/modified-yet-again
Accessing
/modified-again
will redirect to/modified-yet-again
AND
Accessing/modified
will redirect to/modified-yet-again
AND
Accessing/original
will redirect to/modified-yet-again
- You create another redirect from
modified-yet-again
to/original
Accessing
/modified-yet-again
will redirect to/original
AND
Accessing/modified-again
will redirect to/original
AND
Accessing/modified
will redirect to/original
Installation
Install the package via Composer:
Publish the config file with:
Publish the migration file with:
After the migration has been published you can create the redirects
table by running:
Usage
Add the middleware
In order for the redirecting functionality to actually happen, you need to add the Lidai\Redirects\Middleware\RedirectRequests
middleware.
Go to App\Http\Kernel
and add the Lidai\Redirects\Middleware\RedirectRequests
middleware in your $middlewareGroups
groups of choice.
Creating redirects
You should never use the Lidai\Redirects\Models\Redirect
directly, as this is the default concrete implementation for the Lidai\Redirects\Contracts\RedirectModelContract
.
Using the Lidai\Redirects\Models\Redirect
model class directly will prevent you from being able to extend the model's capabilities.
You can create redirects that will be stored inside the redirects
table like this:
To see how you can extend the Lidai\Redirects\Models\Redirect
model's capabilities, please read the comments from /config/redirects.php -> redirect_model
Credits
- LiamAird
- All Contributors
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
License
The MIT License (MIT). Please see LICENSE for more information.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.