0

我想将一个像这样的联系表单的 html 页面重定向www.abc.com/contact.html 到不同的域,但没有像这样 的wwwxyz.com/contact.html

我有 2 个具有相同数据的域(只是域名不同)。xyz.com 上的表单运行良好,但 abc.com 上的表单无法运行,即使两个域上的代码 100% 相同。

4

1 回答 1

0

只需将以下行放入您的 .htaccess 文件中。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www?.abc.com [NC]
RewriteRule ^contact\.html$ http://xyz.com%{REQUEST_URI} [R=301,L]

编辑:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.abc.com [NC]
RewriteRule ^contact\.html$ http://xyz.com%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTP_HOST} ^abc.com [NC]
RewriteRule ^contact\.html$ http://xyz.com%{REQUEST_URI} [R=301,L]
于 2012-11-05T15:09:07.853 回答