我有两个域名foo.com和bar.com都指向“/ var / www / html /”。 Apache2上托管的基本HTML页面很少。我想在“.htaccess”中进行重定向,当有人打开“foo.com”时,它不应该有任何重定向,它会在“/ var / www / html /”中显示“index.html”。但是,如果有人打开“bar.com”,它应该重定向到“http://foo.com/contactus/details.html”
感谢。
答案 0 :(得分:0)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^bar.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.bar.com [NC]
RewriteRule ^(.*)$ http://foo.com/contactus/details.html [L,R=301,NC]
尝试将此网址重定向到新网址