Nginx 映射模块 301 重定向

Nginx 映射模块 301 重定向

我已经用 Ruby on Rails 重建了我的网站,现在我想用 Nginx 的 301 重定向很多旧网址http://wiki.nginx.org/HttpMapModule

由于某种原因,我无法让它工作。没有 rewrite ^ $new permanent; 行,它工作正常。

有人看到我遗漏了什么吗?

这是我的 nginx.conf:

server {
  server_name example.com;
  return 301 $scheme://www.example.com$request_uri;
}

# 301 redirect list
map $uri $new {
  /test123 http://www.example.com/test123;
  /bla http://www.example.com/bladiebla;
}

server {
  server_name www.example.com;
  rewrite ^ $new permanent;
  root example/public;

  location ^~ /assets/ {
    gzip_static on;
    expires max;
    add_header Cache-Control public;
  }

  try_files $uri/index.html $uri @unicorn;
  location @unicorn {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;
    proxy_pass http://unicorn-<%= application %>;
  }

  error_page 500 502 503 504 /500.html;
  client_max_body_size 4G;
  keepalive_timeout 10;
}

答案1

这很可能会失败,因为您尝试重定向所有请求,无论它们是否与地图中的某些内容匹配。

为了防止这种情况,请先检查是否匹配。

if ($new) {
    return 301 $new;
}

相关内容