Nginx的伪静态代码
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=$1 last;
}
}
项目安装在二级目录,Nginx的伪静态方法设置如下,其中qb是所在的目录名称
location /qb/ {
if (!-e $request_filename){
rewrite ^/qb/(.*)$ /qb/index.php?s=$1 last;
}
}
可用
我的网站:http://x.lingtui.cn/
不错.
大家收藏 一下
不知道写在哪里