1. 检查配置/etc/httpd/conf/httpd.conf
查看虚拟主机 httpd -S
去掉 NameVirtualHost *:80 前的# 去掉 ServerName 前的#
2. 虚拟主机配置代码
# Ensure that Apache listens on port 80 Listen 80DocumentRoot "/www/example1" ServerName www.example.com # Other directives hereDocumentRoot "/www/example2" ServerName www.example.org # Other directives here
Wamp安装教程(Windows-Apache-Mysql-PHP集成安装环境)