请教个nginx 301重定向问题
要将http://*.a.com 通过301重定向到 https://*.a.comnginx 里正则要怎么写?
例如下面,需要把www.a.com改成*.a.com,但试了不少正则都不行...万能LOC,求救了
server {
listen 80;
server_name www.a.com;
return 301 https://www.a.com$request_uri;
} server_name *.a.com
return 301https://$host$request_uri; yousihai 发表于 2017-11-2 09:39
server_name *.a.com
return 301https://$host$request_uri;
好像可行。。 etotakeo 发表于 2017-11-2 10:00
if ($host != 'www.cqu**m.com') {
rewrite ^/(.*)$ https://www.cqu**m.com/$1 permanent;
}
2楼已解决
你这个是http://www跳转到https://www的,我要的是http://*.a.com跳到https://*.a.com这样的通配符方式的
页:
[1]