ttxx 发表于 2011-1-16 13:12:44

请教重写如何排除某个文件不进行重写?》

请教一个问题。在nginx重写的时候,如何排除指定的xx.html文件不被重写,直接可以访问,先谢谢了。

我的重写规则是以下这样,如何在写条规则让指定的xx.html文件可以直接访问,不进行重写?

location / {
if ($args ~ "^wd=(.*)$"){
      set $rule_0 1$rule_0;
      set $bref_1 $1;
}

if ($rule_0 = "1"){
      rewrite ^/s$ /search.php?wd=$bref_1 last;
}
      rewrite ^/(.+)\.html$ /search.php?wd=$1&static=1 last;
}

licess 发表于 2011-1-16 20:33:35

location / {
if (!-e $request_filename) {
伪静态
}
}
试试

ttxx 发表于 2011-1-16 22:43:14

if (!-e $request_filename) {
rewrite . /qcbz3.html last;
}

是这样吗?我测试了.不行...如果是想让qcbz3.html文件不进行重写,能直接访问这个qcbz3.html该怎么写

谢谢..
页: [1]
查看完整版本: 请教重写如何排除某个文件不进行重写?》