1.安装httpd,并将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello"
安装
#yum -y install httpd
更改主配置中http默认读取index.html为hello.html
#vim /etc/httpd/conf/httpd.conf
<IfModule dir_module>
#DirectoryIndex index.html
DirectoryIndex hello.html
</IfModule>
更改内容
echo 'my home page is hello' > /var/www/html/hello.html
重启服务
systemctl restart httpd
测试
#curl http://192.168.110.128
在浏览器上测试:关闭防火墙和selinux
#systemctl stop firewalld.service
#setenforce 0
2.虚拟主机:虚拟两台主机ip为100,200, 对应访问目录:/www/ip/100, /www/ip/200
并创建首页文件index.html