301重定向方法
进行了301重定向,把www.xmspace.net和xmspace.net合并,并把之前的域名也一并合并.方法是判断nginx核心变量host(老版本是http_host):
server {
server_name www.xmspace.net xmspace.net ;
if ($host != 'www.xmspace.net' ) {
rewrite ^/(.*)$ http://www.xmspace.net/$1 permanent;
}
...
}
用nginx 做web服务器的时候,网站 404页面设置的跟apache 有些不同
error_page 404 /404.html;
location = /404.html {
root /var/www/nginx;
}
location / {
proxy_intercept_errors on;
}
如果是fastcgi的话, 把proxy 改成 fastcgi 就可以了