TP5路由機制
阿新 • • 發佈:2019-02-14
在使用TP5 的時候,預設路徑index.php是入口檔案,載入每一個模組的時候都要將index.php的預設路徑帶上,就像這樣:
http://xy.tohu.xin/index.php/admin/index/index.html。
解決方案:修改專案根目錄下的配置檔案.htaccess檔案。
原來的檔案內容如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
修改檔案中的rewriteRule即可,修改後的檔案內容如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>