设置虚拟主机与虚拟目录设置
1.安装apache
2.设置域名
进入/etc/hosts中加入添加的域名
192.168.84.130 www.xjf.com www.like.com
3.设置http配置文件
加入/etc/httpd/conf/httpd.conf添加主机信息
NameVirtualHost 192.168.84.130:80#命名虚拟主机
<VirtualHost 192.168.84.130:80>
DocumentRoot /var/www/xjf#网页文件存放位置
ServerName www.xjf.com#域名
</VirtualHost>
<VirtualHost 192.168.84.130:80>
DocumentRoot /var/www/like#网页文件存放位置
Alias /lol "/tmp/lol"#虚拟目录,前一个为搜索目录,后一个为实际目录
ServerName www.like.com#域名
</VirtualHost>
4.添加网页文件
进入对应的网页文件存放位置(没有的可以创建)
echo 'xjf_W' > index.html#/var/www/xjf
echo 'like_W' > index.html#/var/www/like
echo 'welcome to lpl' > /tmp/lol/index.html
效果