1. 程式人生 > >Thinkphp5筆記九:路由設置,隱藏indx.php

Thinkphp5筆記九:路由設置,隱藏indx.php

http pre color follow style write blog gin views

網站根目錄下.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>

詳細參考手冊:http://www.kancloud.cn/manual/thinkphp5/177576

Thinkphp5筆記九:路由設置,隱藏indx.php