.htaccess确切的网址重定向

时间:2011-08-10 17:16:37

标签: apache .htaccess redirect

我有两个网站: example.com 和 的 yyy.com

他们都有类似的网络应用程序,但在不同的服务器上。我想让Apache将所有路径请求重定向到 example.com ,与 yyy.com 完全相同。

例如:

1. Request:     example.com/pages/contacts
   Redirects to yyy.com/pages/contacts
2. Request:     example.com/search?first_val=45&second_val=45
   Redirects to yyy.com/search?first_val=45&second_val=45

那么,有没有办法制作这样的.htaccess文件?如果是,我该怎么做?

1 个答案:

答案 0 :(得分:3)

尝试这样的事情:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com$ [OR]
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^(.*)$ http://www.yyy.com/$1 [R=301,L]