tp 5 htaccess配置 去掉index.php
在网站安装根目录下的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]
# RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>