apache虚拟主机配置
作者:快盘下载 人气: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
加载全部内容