php - nginx将http重定向到https和让二级域名重定向到顶级域名
習慣沉默
習慣沉默 2017-05-16 13:12:42
0
1
613

请问一下怎么让http重定向到https和二级域名重定向到顶级域名存在同一个nginx的conf里?

習慣沉默
習慣沉默

全部回复(1)
phpcn_u1582

HTTP重定向到HTTPS(HTTPS监听443端口。同一端口多个域名的话,需要设置server_name)

server {

listen  80;  
server_name domain.com;
rewrite ^(.*)$  https://$host permanent;  

}

二级域名重定向到顶级域名:

server {

listen  80;
server_name *.domain.com;
rewrite ^/(.*) http://domain.com/ permanent;

}

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板