[php]apache虛擬主機配置

風痕影默發表於2014-12-08

1、所謂虛擬主機的配置,即url與磁碟目錄的繫結

2、在httpd.conf中查詢Virtual host,發現有註釋說明需要在conf/extra/httpd-vhosts.conf中進行配置。

3、模板:

 1 <VirtualHost 127.0.0.1:80>
 2     DocumentRoot "d:/myweb"
 3     DirectoryIndex indx.html index.thm index.php
 4     <Directory/>
 5     Options FollowSymLinks
 6     #不許別人修改自己頁面
 7     AllowOverride None
 8     #訪問許可權
 9     Order allow,deny
10     Allow from all
11     </Directory>
12 </VirtualHost>

 

相關文章