是否可以在不显示新网址的情况下将网址重定向到其他网址?
例如:
当用户访问www.sample1.com/page1.html时,应显示www.sample2.com/page2.html。但是URL需要显示为属于www.sample1.com,或类似这样的www.subdomain.sample1.com/blah.html。
我需要为其他域托管一些页面,但这些页面看起来应该属于该域或该域的子域。
在我的情况下,使用iframe不是一个选项,欢迎任何其他建议。
答案 0 :(得分:0)
最简单的可能是使用mod_proxy
在子上下文中显示所有sample2.com页面:
ProxyPass /sample2 http://www.sample2.com
因此,sample2.com/page2.html
将显示为sample1.com/sample2/page2.html
。
否则mod_rewrite
也可能有用,特别是proxy|P
flag。
希望有所帮助。