Nginx服务器重写路径(错误示例)
server_name sstu.cc haveacafe.cn;
#强制http跳转到https
#return 301 https://$host$request_uri;
#强制不加www,顺便跳转https
if ( $host != 'sstu.cc' ) {
rewrite ^/(.*)$ https://sstu.cc/$1 permanent;
}
if ( $host != 'haveacafe.cn' ) {
rewrite ^/(.*)$ https://haveacafe.cn/$1 permanent;
}