|
|
httpd-vhosts.conf
# http://www.PHPnow.org
# filename: httpd-vhosts.conf
<Directory D:/work/php/>
AllowOverride All
Order allow,deny
Allow from all
</Directory>
NameVirtualHost *
<VirtualHost *>
DocumentRoot ../htdocs
ServerName default:80
ErrorLog logs/default-error_log
</VirtualHost>
/*
<VirtualHost 192.168.1.119:9099>
<Directory "D:/work/php/gzmygs">
Options -Indexes FollowSymLinks
</Directory>
DocumentRoot "D:/work/php/gzmygs"
ServerName 192.168.1.119
ErrorLog logs/192.168.1.119:9099-error_log
</VirtualHost>
*/
注释掉的apache 就可以启动了,这段代码有什么问题呢? |
|