鍍金池/ 問答/PHP/ tp5在沒有服務(wù)器權(quán)限的情況下美化路由,去掉public

tp5在沒有服務(wù)器權(quán)限的情況下美化路由,去掉public

在沒有服務(wù)器權(quán)限的情況下
如把:
https://www.entercode.cn/dk/p...
變成
https://www.entercode.cn/dk/a...

把public去掉
這個是我放在public下的重寫規(guī)則
<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>

回答
編輯回答
安于心

直接在application/route.php文件中添加路由規(guī)則即可
詳細(xì)信息可以閱讀官方文檔:
官方手冊

2017年6月6日 07:32