
3.点击【网站目录】- 运行目录下拉选择【public】,随后点击保存
4.点击【伪静态】,复制以下内容到其中,点击保存
location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

4.点击【伪静态】,复制以下内容到其中,点击保存
location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}