Rewrite咋设置?

roppl 2016-9-5 1144


不太明白这个意思是啥?
最新回复 (3)
  • roppl 2016-9-5
    引用 2
    好吧 我不知道这个是啥出错,但是下面这个帖子的静态规则有了。。
    http://bbs.appnode.com/thread-338-1-1.html
  • roppl 2016-9-5
    引用 3
        if (-f $request_filename/index.html){
            rewrite (.*) $1/index.html break;
        }
        if (-f $request_filename/index.php){
            rewrite (.*) $1/index.php;
        }
        if (!-f $request_filename){
            rewrite (.*) /index.php;
        }



    location / {
    }
    这一段删掉就可以了。
  • 虚竹 2016-9-6
    引用 4
    对的,设置 rewrite 规则不要带上 location / {}。
    location / {} 表示在路径 / 上启用 rewrite 设置,通过面板配置时不需要加。
返回
发新帖