我尝试从另一个网址重定向到网址我的意思是,我有一个网址http://www.domainA/Auth/Login,我想重定向到http://www.domainB/Auth/Login,但保留浏览器http://www.domainA/Auth/Login。我正在使用WordPress,我使用插件获得了第一步,但我没有采取关于保留旧网址的第二步。我怎么能这样做?。
感谢您的支持
答案 0 :(得分:1)
如果没有更改地址栏,则无法重定向网址。
您可以在domainA中使用iframe DomainB。通过这种方法,您可以得到您想要的东西。
http://www.domainA/Auth/Login/index.html的示例代码:
<iframe src="http://www.domainB/Auth/Login" style="position:fixed; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
Your browser doesn't support iframes
</iframe>