PHP code example of aw-studio / laravel-redirects

1. Go to this page and download the library: Download aw-studio/laravel-redirects library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

aw-studio / laravel-redirects example snippets


class Kernel extends HttpKernel
{
    protected $middleware = [
        ...
        \AwStudio\Redirects\Middleware\RedirectRoutesMiddleware::class,
    ],
}

app('redirect.model')->create([
    'from_url' => '/old',
    'to_url' => '/new',
    'http_status_code' => 301
]);

'redirects' => [
    '/{any}' => '/en/{any}',
],

'redirects' => [
    '/old' => ['/temporary-new', 302],
],

'redirects' => [
    '/blog/{post}' => '/news/{post}',
]

//

app('redirect.model')->create([
    'from_url' => 'blog/{post}',
    'to_url' => 'news/{post}',
]);
sh
php artisan vendor:publish --provider="AwStudio\Redirects\RedirectsServiceProvider"
sh
php artisan migrate