開發環境:WAMP
實例一,Apache配置localhost虛擬主機步驟
1,用記事本打開apache目錄下httpd文件(如:D:\wamp\bin\apache\apache2.2.8\conf),找到以下模塊
#Virtualhosts
#Includeconf/extra/httpd-vhosts.conf
去掉前面的#,這樣就開啓了httpd-vhosts虛擬主機文件。這時候重啓wamp環境,沒法打開localhost,須要在httpd-vhosts.conf配置一下。
2,用記事本打開httpd-vhosts文件,配置好localhost虛擬主機,參照httpd-vhosts文件中實例,修改爲以下:
<VirtualHost*:80>
ServerAdminwebmaster@dummy-host.localhost
DocumentRoot」D:\wamp\www」
ServerNamelocalhost
ServerAliaslocalhost
ErrorLog」logs/dummy-host.localhost-error.log」
CustomLog」logs/dummy-host.localhost-access.log」common
</VirtualHost>
修改配置以下:
DocumentRoot修改成本地wamp環境下的www目錄(如:D:\wamp\www)
ServerName改成localhost
3,重啓Apache,發現localhost能夠正常打開,配置localhost比較簡單。
實例二,Apache配置test.biuuu.com虛擬主機步驟
1,方法同上,複製配置代碼修改以下:
<VirtualHost*:80>
ServerAdmintest@biuuu.com
DocumentRootE:\WebRoot\biuuu
ServerNametest.biuuu.com
ErrorLog」logs/dummy-host2.localhost-error.log」
CustomLog」logs/dummy-host2.localhost-access.log」common
</VirtualHost>
2,打開host文件(C:\WINDOWS\system32\drivers\etc\hosts),增長一行代碼
127.0.0.1test.biuuu.com
3,在瀏覽器中打開test.biuuu.com,發現以下錯誤403Forbidden錯誤
Forbidden
Youdon’thavepermissiontoaccess/onthisserver.
分析:這主要是目錄訪問權限沒有設置,須要設置對目錄的訪問權!
4,打開httpd文件,找到以下語句
<Directory/>
OptionsFollowSymLinks
AllowOverrideNone
Orderdeny,allow
Denyfromall
</Directory>
複製以上代碼,並進行目錄修改,把/替換爲E:\WebRoot\biuuu,修改virtualHost代碼以下
<VirtualHost*:80>
ServerAdmintest@biuuu.com
DocumentRootE:\WebRoot\biuuu
ServerNametest.biuuu.com
ErrorLog」logs/dummy-host2.localhost-error.log」
CustomLog」logs/dummy-host2.localhost-access.log」common
<DirectoryE:\WebRoot\biuuu>
OptionsFollowSymLinks
AllowOverrideNone
Orderdeny,allow
Denyfromall
</Directory>
</VirtualHost>
在瀏覽器中測試發現仍是打不開,提示如上403Forbidden錯誤,修改其中的Denyfromall爲allowfromall
5,重啓Apache,虛擬主機配置成功!
注意事項
1,目錄路徑,如E:\WebRoot\biuuu
2,訪問權限,如上Denyfromall修改成allowfromall
3,host文件,配置虛擬域名host指向
4,httpd文件,打開Includeconf/extra/httpd-vhosts.conf模塊
5,httpd-vhosts文件,配置虛擬主機
使用Apache配置httpd-vhosts虛擬主機對於開發人員來講比較簡單,但卻很是重要,僅供參考!web
以上文字是我從網上找到的一篇文章(原文地址:http://blog.csdn.net/samxx8/article/details/6743611),根據以上文字成功的配置出了虛擬主機,可是當我在配置訪問文件夾目錄的虛擬主機的時候,遇到了兩次問題。apache
第一,目錄放問不到,瀏覽器返回沒法訪問。根據這個問題我檢查了個人httpd.conf文件夾和httpd-vhosts.conf文件夾,發現兩個文件夾和上邊的配置過程都沒有錯誤,可是在瀏覽器
ServerAdmin webmaster@www.1116.com, DocumentRoot "D:\wamp\www\1116"這兩個目錄的最後都有一個/,當我去掉這個/以後問題就解決了,可是系統卻返回禁止訪問的403頁面,當我在httpd-vhosts.conf下將Options FollowSymLinks改成Options Indexes FollowSymLinks以後就可以正常訪問了,這裏是由於沒有將目錄訪問權限打開的緣由形成的。ide