我有一个LAMP服务器,我的主站点托管在VPS上。
主站点离开Joomla。
我为每个客户设置了一个页面:
mainsite.com/index.php?option=com_ ....
该网站具有创建SEF URL的重写功能,如:
mainsite.com/client1.html
mainsite.com/client2.html
mainsite.com/client3.html
这些页面是单页,没有与其他mainsite.com页面的相对链接。它们只是单独的宣传册页面。
我是否可以设置我的服务器以允许客户端将其域指向我的服务器并在浏览器地址栏显示其域时显示页面内容,而不是mainsite URL?
client1.com显示mainsite.com/client1.html内容,但仍在地址栏中显示client1.com。
...所以“面具”不是“重定向”。
这是否可以使用CNAME记录?或者其他的东西?这样做的最佳方式是什么?
答案 0 :(得分:0)
这通常取决于注册商。许多域名注册商都提供了使用屏蔽转发域名的功能,但该方法因注册商和注册商而异。
另一种无论在托管域指向哪个域并且在该托管中放置index.html文件的方法都会起作用,如下所示:
<frameset>
<frame src="http://mainsite.com/client1.html">
</frameset>