时间:2024-05-26 11:11:35
#1.X版本使用如下规则:
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}
#2.X+版本使用如下规则:
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}
Copyright © 2012-2020 wenyue. 吻月科技 版权所有备案号:皖ICP备2020016822号-5