如何将mydomain.com重定向到myotherdomain.com/wordpress/website/

时间:2013-08-22 09:51:26

标签: .htaccess url redirect

我的域名为 mydomain.com
我还有一个网站托管在 myotherdomain.com/wordpress/website /

我想要的是当有人将 mydomain.com/my_post / 输入浏览器时,会向他们展示来自 myotherdomain.com/wordpress/website/my_post / 的内容保留地址工具栏中的原始URL。

我想这是 .htaccess 工作,但我不知道如何处理它。

提前致谢!

4 个答案:

答案 0 :(得分:0)

这是您的示例代码

RewriteRule ^my_post/index.php http://myotherdomain.com/wordpress/website/my_post/\/ [R=301,L]
希望这会对你有所帮助。感谢

答案 1 :(得分:0)

您可能需要使用类似

的内容

http://example.com/file.html重定向到http://example.com/folder1/file.html

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} example.com$ [NC]
RewriteCond %{HTTP_HOST} !folder1
RewriteRule ^(.*)$ http://example.com/folder1/$1 [R=301,L]

完整指南https://kb.mediatemple.net/questions/85/Using+.htaccess+rewrite+rules#gs

<强> [增订]

如果我是对的,这应该尝试一下。

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.example1\.com  [NC]
RewriteRule ^(.*)$  http://www.example2.com/folder1/$1 [R=301,NC,L]

答案 2 :(得分:0)

  

RewriteEngine On

     

RewriteRule ^(。*)$ http://myotherdomain.com/wordpress/website/my_post/ [QSA,L]

答案 3 :(得分:0)

尝试使用以下代码添加index.html:

<div id="iFrame1" style="position:absolute; left:0px; top:0px; z-index:0">
<iframe name="iFrame1" width="{Differs}%" height="100%" src="http://myotherdomain.com/wordpress/website/my_post/" scrolling="yes" frameborder="0"></iframe>
</div>

以下是GasBuddies网站的一个例子:

<div id="iFrame1" style="position:absolute; left:0px; top:0px; z-index:0">
<iframe name="iFrame1" width="455%" height="100%" src="http://gasbuddy.com/" scrolling="yes" frameborder="0"></iframe>
</div>