第一步,配置本地hosts
sudo vi /etc/hosts
在后面添加你的域名xxx.com
127.0.0.1 xxx.com
第二步 启用apache的虚拟主机功能
打开配置文件 vi /Applications/XAMPP/xamppfiles/etc/httpd.conf
找到下面这一行,去掉最前面的#
#Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf
第三步 配置虚拟主机
首先打开配置文件 vi /Applications/XAMPP/etc/extra/httpd-vhosts.conf
清空里面的内容,因为是新安装的,不清空也可以。添加以下内容
默认虚拟主机
<virtualhost *:80>
ServerName localhost
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
<directory "/Applications/XAMPP/xamppfiles/htdocs">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
</directory>
</virtualhost>
然后添加自己的虚拟主机,注意 xxx.com需修改成和第一步hosts中一致的。
<virtualhost *:80>
ServerName xxx.com
DocumentRoot "/Users/yourusername/path/to/your/site"
<directory "/Users/yourusername/path/to/your/site">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</directory>
ErrorLog "logs/mysite.local-error_log"
</virtualhost>
第四步 如果经过以上步骤重启apache还是有403错误, 就找到
/Applications/XAMPP/xamppfiles/etc/httpd.conf
修改里面的User和Group, User修改为你的电脑的用户名, group修改为staff
也就是
#User daemon
User mac
#Group daemon
Group staff