求一个nginx 301方法
由于域名有点长 加上www更长了,现在想把www转向到无www上面,求下nginx 301.... rewrite^(.*) http://yourdomain.com$1 permanent; http://t.cn/ROJVTkI server {listen 80;
server_name www.yourdomain.com;
return 301 http://yourdomain.com$request_uri;
}
server {
listen 80;
server_name yourdomain.com;
charset utf-8;
location / {
...
}
}
页:
[1]