伪静态

配置以后首页无法访问 子页面可以访问

1
2
3
4
5
6
7
8
9
10
location / {
index index.html index.htm;
#autoindex on;
# 添加下面代码 开启nginx的重写模块
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
# 添加代码截止
}