1. 程式人生 > >php的TP5路由配置url的方式

php的TP5路由配置url的方式

在application檔案下找到route.php在裡面配置路由

use think\Route;
Route::rule('hello','samiple/test/hello');
http://z.cn:8080/hello訪問方式即可訪問,就像hello代理了samiple/test/hello這個路徑

路由的各種配置

//Route::rule('hello','samiple/test/hello','GET|POST',['https'=>false]);//代表即使是get還是post都能訪問成功
Route::get('hello','samiple/test/hello');
//Route::any('hello','samiple/test/hello'); //代表所有的*號,即什麼訪問都能允許通過
//Route::post('hello','samiple/test/hello');
Route::rule('路由表示式','路由地址','請求型別','路由引數[陣列的形式]','變數規則[陣列的形式]');