nginx – 如果作为参数传递的文件名没有退出,则重定向到404

我在uri中有特殊的参数data = / path / to / filename.htm.

在SSI上建立了旧的和生锈的网站,我无法修改它.

问题是当文件名传递为arg_data不存在时,页面被破坏.

在这种情况下,我想重定向404.htm.

像这样的东西:

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;
  }

}

相关文章

一、Linux下Nginx的安装 1.去官网 http://nginx.org/download/下载对应的Nginx安装包,推荐使...
一、空格:默认匹配、普通匹配 location / { root /home; } 二、= :精确匹配(表示匹配到 /home/resou...
``` nginx -c 配置文件路径 ``` ``` /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.con...
前言 nginx可所谓是如今最好用的软件级别的负载均衡了。通过nginx的高性能,并发能力强,占用内存下的特...
1.ngnix概念 Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。由俄...
博客园从今天上午就开始报502错误 , 他的原因还不知道 , 暂时先说下我们遇到502的排查情况 最大的可能性...