nginx 伪静态配置规则
nginx 伪静态配置规则
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last;
}
}
然后重启nginx 就好
nginx 伪静态配置规则
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last;
}
}
然后重启nginx 就好