利用Apache的VirtualHost在本地搭建多個站點

鍾超發表於2011-10-12

在已經成功設定一個站點後,如果我們想再建設一個站點怎麼辦?Apache的VirtualHost可以幫助你。

Apache 要在本地設定第二個站點,則可以通過VirtualHost實現,具體如下:


<VirtualHost 127.0.0.2:80>
    DocumentRoot E:/ide/eclipse-php/test
    ServerName 127.0.0.2:80
</VirtualHost>
<Directory "E:/ide/eclipse-php/test">
    Options Indexes FollowSymLinks Multiviews
    AllowOverride All
    Order Allow,Deny
    Allow from all
</Directory>

相關文章