TP5中URL訪問模式的解析

來源:互聯網
上載者:User
這篇文章給大家介紹的內容是關於TP5中的URL訪問模式,有著一定的參考價值,有需要的朋友可以參考一下。

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


2. 混合模式
開啟路由,並使用路由定義+預設PATH_INFO方式的混合:

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

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

3. 強制使用路由模式
在application/config.php中找到以下設定項,設定為true

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

在application/route.php中將

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

注釋,並添加代碼

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


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.