Tag: redirect
apache和nginx的redirect实现域名跳转
apache中,在虚拟主机的配置中加入
引用
RedirectMatch ^/(.*)$ http://www.newdomain.com/$1
或者用
引用
RedirectMatch permanent ^/(.*)$ http://www.newdomain.com/$1
实现301永久跳转
nginx中,在server{}中加入
引用
if ($host = ‘old_domain.com’ ) {
rewrite ^/(.*)$ http://newdomain.com/$1 permanent;
}
[阅读全文]