首頁 >後端開發 >php教程 >Mac配置虛擬主機詳細流程

Mac配置虛擬主機詳細流程

little bottle
little bottle轉載
2019-04-17 15:23:143620瀏覽

一、啟動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,設定虛擬主機了。需要注意的是該檔案預設開啟了兩個作為範例的虛擬主機

<VirtualHost *:80> 
ServerAdmin webmaster@dummy-host.example.com 
DocumentRoot "/usr/docs/dummy-host.example.com" 
ServerName dummy-host.example.com 
ErrorLog "/private/var/log/apache2/dummy-host.example.com-error_log" 
CustomLog "/private/var/log/apache2/dummy-host.example.com-access_log" common 
</VirtualHost> 
<VirtualHost *:80> 
ServerAdmin webmaster@dummy-host2.example.com 
DocumentRoot "/usr/docs/dummy-host2.example.com" 
ServerName dummy-host2.example.com 
ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log" 
CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common 
</VirtualHost>

而實際上,這兩個虛擬主機是不存在的,在沒有配置任何其他虛擬主機時,可能會導致訪問localhost時出現如下提示: 
Forbidden 
You don't have permission to access /index.php on this server

最簡單的辦法就是在它們每行前面加上#,註解掉就好了,這樣既能參考又不導致其他問題。

5.增加以下配置,支援localhost訪問,新增虛擬主機存取

<VirtualHost *:80> 
DocumentRoot "/Library/WebServer/Documents" 
ServerName localhost 
ErrorLog "/private/var/log/apache2/localhost-error_log" 
CustomLog "/private/var/log/apache2/localhost-access_log" common 
</VirtualHost> 
<VirtualHost *:80> 
DocumentRoot "/Library/WebServer/Documents" 
ServerName 虚拟主机地址 (如:www.test.com)
ErrorLog "/private/var/log/apache2/test-error_log" 
CustomLog "/private/var/log/apache2/test-access_log" common 
<Directory /> 
Options Indexes FollowSymLinks MultiViews 
AllowOverride None 
Order deny,allow 
Allow from all 
</Directory> 
</VirtualHost>

儲存,退出,重新啟動Apache。

6.執行“sudo vi /etc/hosts”,開啟hosts設定文件,加入"127.0.0.1 www.test.com",這樣就可以設定完成test虛擬主機了。

開啟瀏覽器,輸入:www.test.com

It works!

設定成功,跟localhost一致!

推薦課程:PHP影片教學

#

以上是Mac配置虛擬主機詳細流程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除