redirect/routes/web.php

20 lines
552 B
PHP
Raw Normal View History

<?php
use Illuminate\Support\Facades\Route;
2022-10-13 11:41:38 +00:00
use App\Http\Controllers\RequestController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
2022-10-13 11:41:38 +00:00
Route::any('{uri?}',[RequestController::class,'main'])
->where('uri','.*');