htaccess的域名重定向重定向、域名、htaccess

2023-09-02 11:40:14 作者:别等风.

我已经有3个域名服务器都指向它。所有域都在同一个网站上。

I have a server which has 3 domains all pointing to it. All domains are on the same website.

www.domain1.com
www.domain2.com
www.domain3.com

我如何可以重定向www.domain3.com使用的.htaccess www.domain3.com/test.html~~V?

How can I redirect www.domain3.com to www.domain3.com/test.html using .htaccess?

谢谢!

推荐答案

在你的.htaccess,把:

In your .htaccess, put:

RewriteEngine On
RewriteCond %{http_host} ^www.domain3.com [NC]
RewriteRule ^(.*)$ http://www.domain3.com/test.html [R=301,NC]

这应该这样做。