Apache、Nginx设置伪静态去掉index.php
其它
2019-02-20 20:30:51
Apache设置伪静态去掉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>
Nginx设置伪静态去掉index.php代码:
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
亲测可用!

890篇文章
2787人已阅读