当前位置:首页 > PHP教程 > php环境安装 > 列表

Mac配置虚拟主机详细过程

发布:smiling 来源: PHP粉丝网  添加日期:2020-02-22 17:04:59 浏览: 评论:0 

一、启动Apache本文主要讲述了

终端输入:sudo apachectl start

Apache的安装目录在:/etc/apache2/,etc默认是隐藏的。有三种方式查看:

1.桌面位于Finder时:shift+command+g,输入“/etc”(即Finder-前往-前往文件夹的快捷键)

2.打开终端:cd /etc

3.可以在terminal 输入 "open /etc"

二、设置虚拟主机

1.在终端运行“sudo vi /etc/apache2/httpd.conf”,打开Apche的配置文件

2.在httpd.conf中找到“#Include /private/etc/apache2/extra/httpd-vhosts.conf”,去掉前面的“#”,保存并退出。

3.运行“sudo apachectl restart”,重启Apache后就开启了虚拟主机配置功能。

4.运行“sudo vi /etc/apache2/extra/httpd-vhosts.conf”,就打开了配置虚拟主机文件httpd-vhost.conf,配置虚拟主机了。需要注意的是该文件默认开启了两个作为例子的虚拟主机

  1. <VirtualHost *:80>  
  2.  
  3. ServerAdmin webmaster@dummy-host.example.com  
  4.  
  5. DocumentRoot "/usr/docs/dummy-host.example.com" 
  6.  
  7. ServerName dummy-host.example.com  
  8.  
  9. ErrorLog "/private/var/log/apache2/dummy-host.example.com-error_log" 
  10.  
  11. CustomLog "/private/var/log/apache2/dummy-host.example.com-access_log" common  
  12.  
  13. </VirtualHost>  
  14.  
  15. <VirtualHost *:80>  
  16.  
  17. ServerAdmin webmaster@dummy-host2.example.com  
  18.  
  19. DocumentRoot "/usr/docs/dummy-host2.example.com" 
  20.  
  21. ServerName dummy-host2.example.com  
  22.  
  23. ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log" 
  24.  
  25. CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common  
  26.  
  27. </VirtualHost> 

而实际上,这两个虚拟主机是不存在的,在没有配置任何其他虚拟主机时,可能会导致访问localhost时出现如下提示:

Forbidden

You don't have permission to access /index.php on this server

最简单的办法就是在它们每行前面加上#,注释掉就好了,这样既能参考又不导致其他问题。

5.增加如下配置,支持localhost访问,添加虚拟主机访问

  1. <VirtualHost *:80>  
  2.  
  3. DocumentRoot "/Library/WebServer/Documents" 
  4.  
  5. ServerName localhost  
  6.  
  7. ErrorLog "/private/var/log/apache2/localhost-error_log" 
  8.  
  9. CustomLog "/private/var/log/apache2/localhost-access_log" common  
  10.  
  11. </VirtualHost>  
  12.  
  13. <VirtualHost *:80>  
  14.  
  15. DocumentRoot "/Library/WebServer/Documents" 
  16.  
  17. ServerName 虚拟主机地址 (如:www.test.com) 
  18.  
  19. ErrorLog "/private/var/log/apache2/test-error_log" 
  20.  
  21. CustomLog "/private/var/log/apache2/test-access_log" common  
  22.  
  23. <Directory />  
  24.  
  25. Options Indexes FollowSymLinks MultiViews  
  26.  
  27. AllowOverride None  
  28.  
  29. Order deny,allow  
  30.  
  31. Allow from all  
  32.  
  33. </Directory>  
  34.  
  35. </VirtualHost> 

保存,退出,重启Apache。

6.运行“sudo vi /etc/hosts”,打开hosts配置文件,加入"127.0.0.1 www.test.com",这样就可以配置完成test虚拟主机了。

打开浏览器,输入:www.test.com

It works!

配置成功,和localhost一致!

Tags: Mac配置虚拟主机

分享到: