把网页放入虚拟机的:/var /www/hml/目录下.
是用apache吗,要是这个可以参考这个
1.修改配置文件
[root@localhost ~]# vi /etc/httpd/conf/httpd.conf
修改 Listen 80 一行 为 Listen 8080
修改 DocumentRoot “/var/www/html“一行为 DocumentRoot "/home/www“ //这个就可以是你的目标地址
修改<Directory “/var/www/html”> 一行为 <Directory "/home/www">
修改 块 内 DirectoryIndex index.html 一行为 DirectoryIndex home.html //你的目标网页
2.重启 Apache 服务
[root@localhost ~]# systemctl restart httpd