问题详情
emlog的伪静态规则是什么?
最佳答案
location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /index.php last; } }
版权:言论仅代表个人观点,不代表官方立场。转载请注明出处:https://www.79ne.cn/question/344.html
location / {
index index.php index.html;
if (!-e $request_filename)
{
rewrite ^/(.+)$ /index.php last;
}
}