我的CMS中有几个基于子域的站点,如:
a.site.com
b.site.com
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.例:
a.site.com/upload/2012/a.jpg => site.com/upload/2012/a.jpg
最佳答案
如果您有* .site.com的sepperate服务器块,则将以下内容添加到子域的配置中应该可以解决问题
原文链接:https://www.f2er.com/nginx/434490.htmllocation /upload/ {
rewrite ^ http://site.com$request_uri permanent;
}
如果你在同一个服务器块中捕获site.com和* .site.com,则需要添加一个额外的if语句:
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
}