我在一个域中有一些WP文件,而在另一个域中有一些WP和PHP文件。我想在我的活动域中重定向,例如http://mydomian.com
(一个Wordpress网站),而我尝试执行{ {1}}(包含WP文件)以及http://dev.anotherdomain.com/cable-locator/
(包含PHP文件)。
我用
创建了index.htmlhttp://dev.anotherdomain.com/subfolder
并将其放置在WP根目录中,但没有任何反应
也尝试过.htaccess,类似这样
<body>
<iframe src="http://dev.anotherdomain.com/cable-locator/"/>
</body>
但仍然没有结果
如何将我的RewriteCond %{HTTP_HOST} ^mydomian.com/
RewriteRule ^(.*) http://dev.anotherdomain.com/cable-locator/ [P]
和http://dev.anotherdomain.com/cable-locator/
重定向到http://dev.anotherdomain.com/subfolder
和http://mydomian.com/cable-locator/
?