nginx 二级目录伪静态设置问题

2020-03-24 21:27发布

参考:https://wenda.whatsns.com/article-14574.html  做的二级目录伪静态设置,但是一直404错误,访问不到文件。


请问需要怎么修改呢?



if (!-e $request_filename) {

                 rewrite ^/(.*)$ /ask/index.php?$1;

                 } 

location ^~ /view {

deny all;

}   


1条回答
mishen - whatsns产品经理
1楼 · 2020-03-25 11:27.采纳回答

if (!-e $request_filename) {

 rewrite ^/二级目录/(.*)$ /二级目录/index.php?$1 last;  

                 } 

参考这个文章

https://wenda.whatsns.com/article-15600.html

一周热门 更多>