修改nginx.conf 文件
location / {
//轉發(fā)規(guī)則
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
修改nginx.conf 文件
location / {
//轉發(fā)規(guī)則
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}