我们做好网站后,可以由于种种原因需要更换域名
如果网站很多文章已经收录,我们可能需要设置301跳转
今天讲下nginx服务器方面的设置
location /article/8731.html {
rewrite ^/(.*)$ http://www.test.com/article/33 permanent;
}
意思就是网站的/article/8731.html这个网页将跳转到http://www.test.com/article/33
我们做好网站后,可以由于种种原因需要更换域名
如果网站很多文章已经收录,我们可能需要设置301跳转
今天讲下nginx服务器方面的设置
location /article/8731.html {
rewrite ^/(.*)$ http://www.test.com/article/33 permanent;
}
意思就是网站的/article/8731.html这个网页将跳转到http://www.test.com/article/33