知识点

配置步骤
- 需求
| 域名 | 访问目录 | 
|---|---|
| test1.com | /home/source/test1 | 
| test2.com | /home/source/test2 | 
| test3.com | /home/source/test3 | 
- 创建配置文件
touch /etc/httpd/conf.d/vhost.conf
vim /etc/httpd/conf.d/vhost.conf
文件内容如下
<VirtualHost *.81>
ServerName test1.com
DocumentRoot "/home/source/test1"
<Directory "/home/source/test1">
AllowOverride None
#Allow open access:
Require all granted
</Directory>
DirectoryIndex test1.html
</VirtualHost><VirtualHost *.81>
ServerName test2.com
DocumentRoot "/home/source/test2"
<Directory "/home/source/test2">
AllowOverride None
#Allow open access:
Require all granted
</Directory>
DirectoryIndex test2.html
</VirtualHost><VirtualHost *.81>
ServerName test3.com
DocumentRoot "/home/source/test3"
<Directory "/home/source/test1">
AllowOverride None
#Allow open access:
Require all granted
</Directory>
DirectoryIndex test3.html
</VirtualHost>
 将上次实验/etc/httpd/conf.d/source.conf去除
cd /etc/httpd/conf.d
mv source.conf source.conf.bak
- 准备访问文件
echo "this is /test1/test1" > /home/source/test1/test1.html
echo "this is /test2/test2" > /home/source/test2/test2.html
echo "this is /test3/test3" > /home/source/test3/test3.html
systemctl restart httpd
- 修改host文件
vim /etc/hosts
加入如下内容
127.0.0.1 test1.com
 127.0.0.1 test2.com
 127.0.0.1 test3.com
 
- 重启服务器测试
curl test1.com:81
curl test2.com:81
curl test3.com:81