thinkphp5 去掉url裡的index.php
在專案的public資料夾(thinkPHP預設的入口檔案)下增加一個 .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>