我最近更改了我的网站并将所有内容从旧域复制到新域。我所拥有的旧域是免费虚拟主机上的子域,现在我想将所有页面重定向到新的。
我的目标
http://old.domain.com/anything ==> http://newdomain.com
我怎样才能在htaccess中执行此操作?我已经尝试过重定向但只是主页是重定向。帮助是appriciated。感谢
答案 0 :(得分:0)
# This will redirect a subdomain to another domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^old\.domain\.com$ [NC]
RewriteRule ^(.*) http://newdomain.com/$1 [L,R]
答案 1 :(得分:0)
您可以在Root / .htaccess
中尝试此操作 RedirectMatch 301 ^/(.*)/?$ http://www.newdomain.com/$1