如果你使用的是mac 系統(tǒng)立宜,很榮幸的告訴你的系統(tǒng)自帶Apache服務(wù)器邀窃,查看自己當(dāng)前系統(tǒng)下是否安裝好了該服務(wù)器家坎,輸入sudo apachectl -v ?牍陌,然后會(huì)讓你輸入你的密碼疮茄,
Server version: Apache/2.4.18 (Unix)
Server built:Feb 20 2016 20:03:19
接著輸入 sudo apachectl start滥朱,這樣Apache就啟動(dòng)了。打開Safari瀏覽器地址欄輸入 “http://localhost”力试,可以看到內(nèi)容為“It works!”的頁(yè)面徙邻。其位于“/Library/WebServer/Documents”下,這就是Apache的默認(rèn)根目錄畸裳。? Apache的安裝目錄在:/etc/apache2/缰犁,etc默認(rèn)是隱藏的。有三種方式查看:
1.dock下右鍵Finder怖糊,選擇"前往文件夾"帅容,輸入"/etc"? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2.在finder下----》前往---》前往文件夾,然后輸入/etc? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3.可以在terminal 輸入 "open /etc"
當(dāng)然這個(gè)和安卓存在同樣的問(wèn)題伍伤,就是當(dāng)資源較多的時(shí)候并徘,存儲(chǔ)空間肯定是不夠的,也需要設(shè)置虛擬目錄扰魂,在終端運(yùn)行“sudo vi /etc/apache2/httpd.conf”麦乞,打開Apche的配置文件在httpd.conf中找到“#Include /private/etc/apache2/extra/httpd-vhosts.conf”,去掉前面的“T乃”路幸,保存并退出。
運(yùn)行“sudo apachectl restart”付翁,重啟Apache后就開啟了虛擬主機(jī)配置功能简肴。
運(yùn)行“sudo vi /etc/apache2/extra/httpd-vhosts.conf”,就打開了配置虛擬主機(jī)文件httpd-vhost.conf百侧,配置虛擬主機(jī)了砰识。需要注意的是該文件默認(rèn)開啟了兩個(gè)作為例子的虛擬主機(jī):
##? ? ServerAdmin webmaster@dummy-host.example.com
#? ? DocumentRoot "/usr/docs/dummy-host.example.com"
#? ? ServerName dummy-host.example.com
#? ? ServerAlias www.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
###? ? 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
你的默認(rèn)是沒(méi)有注釋的,我的注釋后就是這個(gè)效果佣渴,在沒(méi)有配置任何其他虛擬主機(jī)時(shí)辫狼,可能會(huì)導(dǎo)致訪問(wèn)localhost時(shí)出現(xiàn)如下提示:
Forbidden
You don't have permission to access /index.php on this server
運(yùn)行“sudo vi /etc/hosts”,打開hosts配置文件辛润,加入"127.0.0.1 mysites"膨处,這樣就可以配置完成sites虛擬主機(jī)了,可以訪問(wèn)“http://mysites”了,在10.8之前Mac OS X版本其內(nèi)容和“http://localhost/~[用戶名]”完全一致真椿。
注意鹃答,記錄log的“ErrorLog "/private/var/log/apache2/sites-error_log"”也可以刪掉,但記錄日志其實(shí)是一個(gè)好習(xí)慣突硝,在出現(xiàn)問(wèn)題時(shí)可以幫助我們判斷测摔。如果保留這些log代碼,一定log文件路徑都是存在的解恰,如果隨便修改一個(gè)不存在的锋八,會(huì)導(dǎo)致Apache無(wú)法服務(wù)而沒(méi)有錯(cuò)誤提示,這個(gè)比較惡心护盈。
? ? ? ? 按照以上流程挟纱,基本就配置好了。如果你還需要某些特殊配置黄琼,下面列出常用的一些信息
apache默認(rèn)安裝路徑是/etc/apache2/樊销。
apache默認(rèn)host路徑是/Library/WebServer/Documents。
apache默認(rèn)用戶的路徑是~/Sites(這個(gè)路徑如果沒(méi)有要手動(dòng)創(chuàng)建脏款,比如我的用戶名是qyfmac围苫,這個(gè)路徑就是/Users/qyfmac/Sites)。
如果把文件都放到/Library/WebServer/Documents里撤师,每次修改都需要sudo剂府,所有我都把文件放到了~/Sites下。不過(guò)文件放到~/Sites下要做些配置工作的剃盾,下面我們開始配置腺占。
1.修改/etc/apache2/httpd.conf文件。找到下面幾行代碼痒谴,將前面的#號(hào)去掉衰伯。
LoadModule authz_core_module libexec/apache2/mod_authz_core.so
LoadModule authz_host_module libexec/apache2/mod_authz_host.so
LoadModule userdir_module libexec/apache2/mod_userdir.so
Include/private/etc/apache2/extra/httpd-userdir.conf
2.修改/etc/apache2/extra/httpd-userdir.conf文件。找到下面一行代碼积蔚,將前面的#號(hào)去掉意鲸。
Include /private/etc/apache2/users/*.conf
3.修改/etc/apache2/users/qyfmac.conf文件。如果文件不存在就創(chuàng)建一個(gè)尽爆,我的其中qyfmac是我的用戶名怎顾,可以根據(jù)用戶不同創(chuàng)建多個(gè)。文件內(nèi)容如下
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
Require all granted
AllowOverride None
Order allow,deny
Allow from all
Require all granted
好的配置搞定了漱贱,下面讓我們啟動(dòng)apache槐雾。
停止apache命令:sudo apachectl stop
啟動(dòng)apache命令:sudo apachectl start
重啟apache命令:sudo apachectl restart
啟動(dòng)成功后訪問(wèn)http://localhost和http://localhost/~qyfmac看看效果。