将一个域重定向到另一个域 时间:2016-12-29 作者:Ian Warburton 我如何向以下页面发出所有请求:http://a.com 转到同一页,但打开http://b.com?htaccess当前看起来像这样。。。<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> 1 个回复 最合适的回答,由SO网友:Michael Waskosky 整理而成 假设您使用的是apache,并且有权编辑代码文件,请将以下内容添加到您的中。htaccess文件位于站点根目录中,位于“RewriteEngine On”行之后的某个位置。RewriteCond %{HTTP_HOST} ^a.com [NC] RewriteRule ^(.*)$ http://b.com/$1 [L,R=301,NC] 文章导航