改用Apache2.4一段时间了,一直没发现它和Apache2.2的有什么区别,一些基本配置都是差不多,直到前几天配置虚拟主机是才发现了一些小小的不同
一直以来我都是在htdocs目录下配置虚拟主机的,大体上使用的方法如下:
<VirtualHost *:80> DocumentRoot "D:/www/Apache24/htdocs" ServerName localhost <Directory D:/www/Apache24/htdocs> DirectoryIndex index.html index.php Order Deny,Allow Allow from all </Directory> </VirtualHost>