亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to set up the same website, different domain names, and different background images?
小藍
小藍 2023-06-22 17:41:26
0
2
738

Dear brothers. Excuse me, I am a novice. I have bound multiple domain names to the same web page. For example, if I want www.bd.com to access it, the background image should be changed to b.jpg. Otherwise, the default is the background image set before

小藍
小藍

reply all(2)
小藍

thank you boss

WBOY

<?php
$domain?=?$_SERVER['HTTP_HOST'];

if?($domain?==?'www.bd.com')?{
$backgroundImage?=?'b.jpg';
}?else?{
$backgroundImage?=?'default.jpg';?//?默認背景圖
}
?>

<!DOCTYPE?html>
<html>
<head>
<style>
body?{
background-image:?url(<?php?echo?$backgroundImage;??>);
}
</style>
</head>
<body>
<!--?頁面內(nèi)容?-->
</body>
</html>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template