url-rewriting – 将子域上的已知文件夹重定向到nginx的主站点

前端之家收集整理的这篇文章主要介绍了url-rewriting – 将子域上的已知文件夹重定向到nginx的主站点前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的CMS中有几个基于子域的站点,如:

@H_301_6@a.site.com
b.site.com

所有上传文件都在/ upload目录下,如:

@H_301_6@site.com/upload/2012/a.jpg

但URL的生成方式如下:“/ upload#12 / a.jpg”.在这种情况下,可以在a.site.com/upload/2012/a.jpg网址和b.site.com/upload/2012/a.jpg网址上访问相同的图片.

如何配置Nginx以将指向/ upload的所有请求重定向到site.com/upload.例:

@H_301_6@a.site.com/upload/2012/a.jpg => site.com/upload/2012/a.jpg
最佳答案
如果您有* .site.com的sepperate服务器块,则将以下内容添加到子域的配置中应该可以解决问题

@H_301_6@location /upload/ {
  rewrite ^ http://site.com$request_uri permanent;
}

如果你在同一个服务器块中捕获site.com和* .site.com,则需要添加一个额外的if语句:

@H_301_6@location /upload/ {
  if( $host != site.com ) {
    rewrite ^ http://site.com$request_uri permanent;
  }
  # if we get here it's the main site
  # directives for serving http://site.com/upload/ go here
}
原文链接:https://www.f2er.com/nginx/434490.html

猜你在找的Nginx相关文章