2011年5月22日 星期日

apache httpd.conf virtual directory

Apache virtual directory設定:

以windows 7安裝appserv為例
appserv www 目錄在 C:\AppServ\www
想要新增一virtual directory取代本機端檔案夾目錄

找到apache的httpd.conf
以我的安裝為例, C:\AppServ\Apache2.2\conf

在空白處加上:


Alias /test "C:\aaa\bbb\html"        #使用virtual directory /test取代原始目錄
<Directory "C:\aaa\bbb\html">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

改好之後存檔, 然後將Apache restart
再開啟瀏覽器輸入 http://localhost/test 就會指定到 C:\aaa\bbb\html
若瀏覽器無反應, 記得

沒有留言:

張貼留言