@byxiaoxie5 年前
11/21
05:50
配置文件访问路径设置
原路径:root /www/wwwroot/xiaoxie;
修改后:root /www/wwwroot/xiaoxie/public;
伪静态设置
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
配置文件访问路径设置
原路径:root /www/wwwroot/xiaoxie;
修改后:root /www/wwwroot/xiaoxie/public;
伪静态设置
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}