omatech/redireccio-laravel

该软件包最新版本(dev-master)没有可用的许可证信息。

dev-master 2019-07-10 10:37 UTC

This package is auto-updated.

Last update: 2024-09-10 22:14:11 UTC


README

composer require omatech/redireccio-laravel

php artisan vendor:publish

选择 -> 提供者:Omatech\RedireccIO\Laravel\RedireccIOServiceProvider

config/redireccio.php -> token

app/Exceptions/Handler.php 中 report() 方法

if($exception instanceof NotFoundHttpException) {
    $url = request()->fullUrl();
    $method = request()->method();

    app()->make('RedireccIO')->intercept($url, $method);
}
parent::report($exception);