我在uri中有特殊的参数data = / path / to / filename.htm.
在SSI上建立了旧的和生锈的网站,我无法修改它.
像这样的东西:
if (!-f $arg_data){
rewrite ^.*$ /404.htm last;
}
但我得到:
rewrite or internal redirection cycle while processing “/404.htm
我认为是因为我没有检查arg_data是否存在.
但是Nginx没有嵌套if-s.
我试过了:
set $data index.htm;
if ($args ~ "data=(.+)") {
set $data $1;
}
if (!-f $data) {
rewrite ^.*$ /404.htm last;
}
Idea将$data设置为100%存在的文件,然后在重写之后传递数据参数.
看起来我做错了.
最佳答案
好的,关于我们最后的评论,你需要两个if语句的AND条件.
Nginx无法做到这一点.
为实现这一点,我们将使用一个处理$test var的小技巧:
server {
#...directives...
error_page 404 /404.htm;
if ($args != "") { # Test if there are some args
set $test A;
}
if (!-f /full/path/to/$arg_data) { # Test if file in args doesn't exist
set $test "${test}B";
}
if ($test = AB) { # If there are some args AND if file doesn't exist
return 404;
}
}