如何使用位置正则表达式通过nginx重定向/处理来自搜索引擎的请求

时间:2012-04-24 21:37:25

标签: web-applications nginx server-configuration

我开发了一个基于ajax的web应用程序,带有哈希爆炸网址。

我正在尝试将搜索引擎的请求重定向到另一个生成HTML快照并发送响应的服务器。我试图使用如下所述的location指令在nginx中实现这一点:

      location ~ ^(/?_escaped_fragment_=).*$ {
         proxy_set_header        Host $host;
          proxy_set_header        X-Real-IP $remote_addr;
      proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header        X-Forwarded-Proto $scheme;

          client_max_body_size    10m;
          client_body_buffer_size 128k;
          proxy_connect_timeout   60s;
          proxy_send_timeout      90s;
          proxy_read_timeout      90s;
          proxy_buffering         off;
          proxy_temp_file_write_size 64k;
          proxy_pass      http://x1.x2.x3.x4:8080;
          proxy_redirect      off;
      }

但我无法让这个工作。有人可以纠正我正在使用的正则表达式(或)为我提供另一种解决方案来实现这一目标。

提前致谢。

2 个答案:

答案 0 :(得分:5)

您无法检查位置名称(nginx docs)中的参数:

  

请注意,所有类型的位置仅测试不带参数的请求行的URI部分。这样做是因为查询字符串中的参数可以通过多种方式给出,例如:

     

/index.php?user=john&page=1
  /index.php?page=1&user=john

您可以在服务器部分设置重写规则(找到here):

if ($args ~ “_escaped_fragment_=(.+)”) {
    set $real_url $1;
    rewrite ^ /crawler$real_url;
}

并定义“/ crawler”位置,可以将其重定向到HTML生成服务器。

答案 1 :(得分:1)

我用这种方式解决了这个问题:

if ( $arg__escaped_fragment_ ) {
    return 301 $uri$arg__escaped_fragment_;
}