0

试图掌握这一点,但无法完全弄清楚。

我需要重定向:

domainA.com/myPage.php?some=variables&are=here

至:

domainB.com/otherPage.php?some=variables&are=here

如果 myPage.php 在目录中,它也需要工作..但在 domainB 上的目录之外重定向

domainA.com/folder/myPage.php?some=variables&are=here

去:

domainB.com/otherPage.php?some=variables&are=here

这看起来很简单,但我的语法不正确。

4

1 回答 1

0

在 domainA.com 域的文档根目录中的 htaccess 文件中,添加这些(最好在任何其他规则之上)

RewriteEngine On
RewriteCond %{HTTP_HOST}  domainA.com$ [NC]
RewriteRule /?myPage\.php$ http://domainB.com/otherPage.php [L]

Thr 查询字符串参数将自动附加

于 2012-11-30T22:44:05.620 回答