1. vi /opt/lampp/etc/httpd.conf
去掉下面这句前的分#号
#Include etc/extra/httpd-vhosts.conf
#———————————————————–
2. vi /opt/lampp/etc/extra/httpd-xampp.conf
其中的/var/www表示你要存放网站文件的目录
Order allow,deny
Allow from all
#———————————————————–
3. vi /opt/lampp/etc/extra/httpd-vhosts.conf
里面的这个 #NameVirtualHost *:80 如果有#也要去掉
然后配置你的虚拟主机吧
ServerAdmin [email protected]
DocumentRoot /var/www/abc.com
ServerName www.abc.com
ErrorLog logs/abc.com-error_log
CustomLog logs/abc.com-access_log common
#———————————————————–
4. 重启apache
/opt/lampp/lampp restartapache