题目是在说个什么意思呢,我们都知道
打开网站有三种方式
IP 端口 域名
例如1.1.1.1 是百度的域名,我们可以www.baidu.com也可以http://1.1.1.1
而这里要说的是域名方式的站点,如果我们购买的是VPS,默认就自己一个站点,域名和IP都可以打开,但是这样就算挂上CDN也会泄漏源站地址,所以这里我来仿一下加速乐的CDN节点。
加速乐的页面比较简单,里面也就IP和时间的判断难点,中间的server随便写个就行了
IP和时间我用的这里的接口,网页特效集锦
<html>
<head>
<meta charset="utf-8" />
<title>400 Unknown Virtual Host</title>
<style>div{font-size:12px;}a{color:#1463da;text-decoration:none}a:hover{color:#1463da;text-decoration:underline;}</style>
</head>
<body bgcolor="white">
<center><h1>400 Unknown Virtual Host</h1><div>如果您是网站的管理员,请<a href="http://bbs.jiasule.com/thread-11-1-1.html" target="_blank">点击这里</a>了解详情</div></center>
<hr>
<center>client:<script src="http://img.studyofnet.comhttp://code.helpor.net/mine/ip.php"></script>, server: 072b5bc, time: <script src="http://img.studyofnet.comhttp://code.helpor.net/mine/date.php?style=1"></script> <script src="http://img.studyofnet.comhttp://code.helpor.net/mine/time.php?style=1"></script></center>
<div style="display:none;"></div>
</body>
</html>
文件命名为index.html
那么放在哪里呢?这里就需要我们修改一下服务器的配置了
开启虚拟主机配置
在虚拟机的配置文件
/etc/httpd/conf/httpd.conf
中找到
#NameVirtualHost *:80
去掉注释
NameVirtualHost *:80
这样就开启了虚拟主机
然后我们在配置的最后添加相应的虚拟主机目录
IP对应一个目录,网站对应一个目录,然后相应的文件都移动过
<VirtualHost *:80>
ServerAdmin admin@tntsec.com
DocumentRoot /var/www/html/root
</VirtualHost>
<VirtualHost *:80>
ServerAdmin admin@tntsec.com
DocumentRoot /var/www/html/tntsec
ServerName qisiboke.xyz
ServerAlias tntsec.com
ErrorLog logs/tntsec.err.log
CustomLog logs/tntsec.access.log common
</VirtualHost>
上面的index.html放到
/var/www/html/root
下面就可以了
然后重启apache服务
service httpd restart
打开自己的IP看看效果吧
,