我已经有类似的页面
http://example.com/page1
http://example.com/page2
http://example.com/page3
我需要在以下子域上加载这些页面
http://page1.example.com/
http://page2.example.com/
http://page3.example.com/
它应该像http://page1.example.com/一样工作,应该加载http://example.com/page1的内容,而不改变浏览器地址栏中的 URL
我使用了以下代码,但它改变了浏览器地址栏中的 URL
header('Location: http://example.com/page1');
请帮忙。