我正在尝试将所有访问者从我使用的旧域重定向到新域。
以下是我使用的.htaccess文件的内容
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !foobar.com$ [NC]
RewriteRule ^(.*)$ http://foobar.com/$1 [L,R=301]
其中http://foobar.com是新域。
上述代码有效,但仅限访问者输入http://olddomain.com。
我的意思是当访客输入
时http://olddomain.com/terms.php他应该被重定向到http://foobar.com/terms.php
我希望无论访问者在旧域名之后输入什么类型(例如http://olddomain.com/privacy.php,http://olddomain.com/users.php等),他们都会访问 http://foobar.com/不要http://foobar.com/privacy.php等。
答案 0 :(得分:3)
RewriteEngine On
RewriteCond %{HTTP_HOST} !^foobar\.com$ [NC]
RewriteRule .* http://foobar.com%{REQUEST_URI} [L,R=301]