我有一个域,但它在虚拟主机上没有文件。我想知道是否可以在我的虚拟主机上仅使用 .htaccess 执行以下操作。
但我想使用它基本上是我想将我的网络根重定向http://(www.)mydomain.net
到http://domain2.net
. 我想http://(www.)mydomain.com/1/
重定向到domain3.net
.
有人可以帮帮我吗?
非常感谢!
我有一个域,但它在虚拟主机上没有文件。我想知道是否可以在我的虚拟主机上仅使用 .htaccess 执行以下操作。
但我想使用它基本上是我想将我的网络根重定向http://(www.)mydomain.net
到http://domain2.net
. 我想http://(www.)mydomain.com/1/
重定向到domain3.net
.
有人可以帮帮我吗?
非常感谢!
使用 htaccessRedirect
行..
我想会是这样(我没有检查以验证它是否有效......但摆弄它):
Redirect http://mydomain.net http://domain2.net
Redirect http://mydomain.net/1 http://domain3.net
http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F
您可以使用与目录混合的简单 301 指令来执行此操作:
我会将 mydomain1.com 指向 ip xxx.xxx.xxx.xxx/mydomain1,然后在该目录的 htaccess 中:
Redirect 301 / http://domain1.net/
然后您可以对站点 2 重复相同的操作:将站点指向 ip xxx.xxx.xxx.xxx/mydomain2 并在该目录的 htaccess 中
Redirect 301 / http://domain2.net/