apache和nginx的redirect实现域名跳转

作者: nick 分类: apache, linux, nginx 发布时间: 2010-07-30 07:58 ė 61条评论

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;
}

本文出自 传播、沟通、分享,转载时请注明出处及相应链接。

本文永久链接: https://www.nickdd.cn/?p=918

发表评论

您的电子邮箱地址不会被公开。

Ɣ回顶部