
tp5 隐藏index.php
--------------------------------------------------------------------------------------------
<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>
----------------------------------------------------------------- ==================================================================
【宝塔面板-隐藏index.php方式】eg:——————【亲测100%有效!!!】
location /
{
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
==================================================================