mac os下xampp配置基於網域名稱的虛擬機器主機
來源:互聯網
上載者:User
1.在終端運行“sudo vi /XAMPP/etc/httpd.conf”,開啟Apche的設定檔
2.在httpd.conf中找到“#Include /XAMPP/etc/extra/httpd-vhosts.conf”,去掉前面的“#”,儲存並退出。
3.重啟Apache服務之後就開啟了它的虛擬機器主機配置功能。
4.運行“sudo vi /XAMPP/etc/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
最簡單的辦法就是在它們每行前面加上#,注釋掉就好了,這樣既能參考又不導致其他問題。
增加如下配置
<VirtualHost *:80>
ServerAdmin your@website.com
DocumentRoot "/Applications/XAMPP/htdocs/a"
<Directory "/Applications/XAMPP/htdocs/a">
Options FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
ServerName your.website.com
ServerAlias your.website.com
ErrorLog "/Applications/XAMPP/htdocs/a/test_error_log"
CustomLog "/Applications/XAMPP/htdocs/a/test_access_log" common
</VirtualHost>
注意,裡面的<Directory>要加上,而且options要設定成FollowSymLinks,儲存退出,並重啟Apache。
5.運行“sudo vi /etc/hosts”,開啟hosts設定檔,加入”127.0.0.1 your.website.com“,這樣就可以配置完成sites虛擬機器主機了,這樣就可以用“http://your.website.com”訪問了,其內容和“http://localhost/”完全一致。6.但這樣還有個問題,就是原來的localhost已經被指向另一個目錄了,你還需要把localhost 的目錄指向回來:<VirtualHost *:80>
DocumentRoot "/Applications/xampp/htdocs/"
ServerName localhost
</VirtualHost>
這樣就大功告成了!
這裡找到一個圖文的教程,很不錯:http://www.cnblogs.com/heiniuhaha/archive/2011/10/14/2212478.html