使用Htaccess跨不同服务器进行域屏蔽

时间:2015-04-08 16:22:23

标签: apache .htaccess mod-rewrite

我在 domain1.com/blog 上安装了Wordpress,但理想情况下我希望它显示为 sub.domain2.com/blog

这些域位于不同的服务器上。理想情况下,我会在与domain2相同的服务器上安装WP,但现在不可能。

我已经能够获得sub.domain2.com/blog来显示WP主页,但是htaccess和apache是​​否可以重写domain1.com上的网址以显示为sub.domain2.com?< / p>

除了简单的网址重写之外,我对htaccess的经验有限,但我怀疑出于安全原因,这是不可能的。

1 个答案:

答案 0 :(得分:0)

您当然可以将domain1.com上的请求重定向到sub.domain2.com

RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(blog/.*)$ http://sub.domain2.com/$1 [R=301,L]

将上述内容放在domain1.com