# location / {
# root html;
index index.php index.html index.htm;
if (!-e $request_filename) { ##如果没有找到目标文件
rewrite ^/(.*)$ /index.php?/$1 last;
break;
}
#}
本文共 208 字,大约阅读时间需要 1 分钟。
# location / {
# root html;
index index.php index.html index.htm;
if (!-e $request_filename) { ##如果没有找到目标文件
rewrite ^/(.*)$ /index.php?/$1 last;
break;
}
#}
转载于:https://juejin.im/post/5b81475551882543010405db