我们如何在同一网站的不同域中显示不同内容?
example
domain.com content show this in body
*hello you are vising domain.com*
domain.net content show this in body
*hello you are vising domain.net*
但是domain.net和domain.com是同一台服务器上的同一网站。domain.net是domain.com的镜像
我需要使用php if condition blablabla
吗?
答案 0 :(得分:0)
使用全局变量$ _SERVER ['HTTP_HOST']
<?php if ($_SERVER['HTTP_HOST']==='domain.com') { ?>
here is the contents of domain.com
<?php else if ($_SERVER['HTTP_HOST']==='domain.net') { ?>
here is the contents of domain.net
<?php } ?>
答案 1 :(得分:0)
在PHP中:Get current domain
在JavaScript中:Get current domain
然后,您可以在PHP或JavaScript中执行一些if / else语句,并相应地显示您的内容。
致谢
乌马尔·阿卜杜拉