假设我有两个域:mydomain.org 和 mydomain.net
我们目前正在使用 .org 域,但希望迁移到 .net
有没有办法我可以在 apache 中做到这一点,这样如果用户尝试访问 mysite.org/somefolder/somepage 它会自动重定向到 .net 站点上的相应链接?(所以 mysite.net/somefolder/somepage)
谢谢!
mod_proxy
通过httpd.conf
然后通过启用 mod_rewrite 和 .htaccesshttpd.conf
然后将此代码放在您.htaccess
的DOCUMENT_ROOT
目录中:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} mydomain\.org$ [NC]
RewriteRule ^ http://mydomain.net%{REQUEST_URI} [P,L,NE]