TP5中的URL訪問模式

1. PATH_INFO
關閉路由,在application/config.php中找到url_route_must(默認爲false),設置爲false。路由關閉後,不會解析任何路由規則,採用默認的PATH_INFO模式訪問URL:php

clipboard.png

2. 混合模式
開啓路由,並使用路由定義+默認PATH_INFO方式的混合:app

'url_route_on'  =>  true,
'url_route_must'=>  false,

該方式下面,只須要對須要定義路由規則的訪問地址定義路由規則,其它的仍然按照第一種普通模式的PATH_INFO模式訪問URL。post

3. 強制使用路由模式
在application/config.php中找到如下設置項,設置爲trueurl

'url_route_on'          =>  true,
'url_route_must'        =>  true,

在application/route.php中將spa

return [
    '__pattern__' => [
        'name' => '\w+',
    ],
    '[hello]'     => [
        ':id'   => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
        ':name' => ['index/hello', ['method' => 'post']],
    ],

];

註釋,並添加代碼code

use think\Route;
Route::rule("hello", "test/Test/hello");

clipboard.png

注意!!當對一個方法進行路由定義時不可對同一個方法進行PATH_INFO訪問,反之亦然ip

相關文章
相關標籤/搜索