Redirect without change URL

后端 未结 4 1409
误落风尘
误落风尘 2021-01-23 06:23

is it possible to redirect an URL www.siteA.com to www.site2.com/Default.aspx?SiteSource=siteA without changing the browser\'s URL?

Sim

相关标签:
4条回答
  • 2021-01-23 06:59

    You can also use mod_proxy (or similar functionality for a different web server) so that the page your server serves is the same as the remote page. But this has some security and performance implications (you're letting the client make your server do arbitrary work copying data across the network from the remote server).

    0 讨论(0)
  • 2021-01-23 07:07

    server.transfer if on same server

    0 讨论(0)
  • 2021-01-23 07:13

    If the URL doesn't change, it's not a redirect. However, you could create a proxy script that fetches the other page, rewrites any URLs within it, then outputs the result.

    0 讨论(0)
  • 2021-01-23 07:22

    Use a HTML iframe to display www.site2.com/Page2.aspx?SiteSource=siteA, e.g.

    <iframe src="www.site2.com/Page2.aspx?SiteSource=siteA" height="800" width="600" border="0" />
    

    More about the iframe tag.

    0 讨论(0)
提交回复
热议问题