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

Posted

技术标签:

【中文标题】如何使用位置正则表达式通过 nginx 重定向/处理来自搜索引擎的请求【英文标题】:How do I redirect/handle requests from search engines via nginx using location regex 【发布时间】:2012-05-05 14:08:30 【问题描述】:

我开发了一个基于 ajax 的 web 应用程序,带有 hash bang url。

我正在尝试将来自搜索引擎的请求重定向到另一个生成 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;
      

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

提前致谢。

【问题讨论】:

【参考方案1】:

我这样解决了这个问题:

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

【讨论】:

【参考方案2】:

您无法检查位置名称 (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 生成服务器。

【讨论】:

以上是关于如何使用位置正则表达式通过 nginx 重定向/处理来自搜索引擎的请求的主要内容,如果未能解决你的问题,请参考以下文章

Nginx配置rewrite重定向跳转

Nginx的rewrite(地址重定向)剖析

Nginx 配置旧域名重定向到新域名

10. Nginx Rewrite(重定向)

nginx_rewrite

Nginx Rewrite正则表达式案例