码迷,mamicode.com
首页 > 系统相关 > 详细

mac下配置xampp的vhost

时间:2015-06-29 11:35:38      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:

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

 

mac下配置xampp的vhost

标签:

原文地址:http://www.cnblogs.com/simonbaker/p/4607015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!