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;
}
rewrite ^/(.*)$ http://newdomain.com/$1 permanent;
}
本文出自 传播、沟通、分享,转载时请注明出处及相应链接。
本文永久链接: https://www.nickdd.cn/?p=918