请教重写如何排除某个文件不进行重写?》
请教一个问题。在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;
} location / {
if (!-e $request_filename) {
伪静态
}
}
试试 if (!-e $request_filename) {
rewrite . /qcbz3.html last;
}
是这样吗?我测试了.不行...如果是想让qcbz3.html文件不进行重写,能直接访问这个qcbz3.html该怎么写
谢谢..
页:
[1]