[php]apache虚拟主机配置

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>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。