同一php中的不同内容

时间:2019-01-01 06:20:19

标签: php

我们如何在同一网站的不同域中显示不同内容?

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*

.com content.net content

但是domain.net和domain.com是同一台服务器上的同一网站。domain.net是domain.com的镜像 我需要使用php if condition blablabla吗?

2 个答案:

答案 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语句,并相应地显示您的内容。

致谢

乌马尔·阿卜杜拉