标签:
1 先确定在httpd.conf文件(/Applications/XAMPP/xamppfiles/etc/httpd.conf)中,引入了vhosts.conf文件。
1.1 在httpd.conf搜索‘vhosts.conf‘,把前面的#去掉。
2 修改vhosts.conf文件(/Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf)。
把之前的都注释起来,再新增其他相关的映射。
如:
#<VirtualHost *:80> #ServerAdmin webmaster@dummy-host2.example.com #DocumentRoot "/Applications/XAMPP/xamppfiles/docs/dummy-host2.example.com" #ServerName dummy-host2.example.com #ErrorLog "logs/dummy-host2.example.com-error_log" #CustomLog "logs/dummy-host2.example.com-access_log" common #</VirtualHost> <VirtualHost *:80> #访问域名的时候,就会自动映射到下面的文件路径中。 DocumentRoot "文件路径" ServerName 你的域名 </VirtualHost>
3 重启服务器试试。
mac中,可能有权限控制,那就需要用命令行+sudo来编辑文件了。
参考:
http://www.cnblogs.com/heiniuhaha/archive/2011/10/14/2212478.html
http://blog.sina.com.cn/s/blog_43b191a90101ngg9.html
标签:
原文地址:http://www.cnblogs.com/simonbaker/p/4607015.html