首页 > 代码库 > [php]apache虚拟主机配置

[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,deny10     Allow from all11     </Directory>12 </VirtualHost>

 

[php]apache虚拟主机配置