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;
}
}
亲测可用!
六月初字帖坊小程序
你想要的字帖模板及工具,这里都有!
877篇文章
2360人已阅读