2023年01月3日 提问:
247 浏览
写回答 好问题 1 状态问题有人回答啦,大家来学习一下吧~
问题详情

emlog的伪静态规则是什么?

最佳答案

location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /index.php last; } }

版权:言论仅代表个人观点,不代表官方立场。转载请注明出处:https://www.79ne.cn/question/344.html

采纳

确定采纳为最佳答案吗?

发表评论
1 条回答
2023年1月3日 上午7:16

location / {
index index.php index.html;
if (!-e $request_filename)
{
rewrite ^/(.+)$ /index.php last;
}
}