httpd-conf文件里面的内容不一样
里面的内容是
# onlineoffline tag - don't remove
Require local
怎么修改?
我已经安装成功了,那个地方不用改保持默认的就好
404说明你httpd.conf还没配置好,没找到服务器
你的版本是2.5,语法已经不一样了。你要在httpd-vhosts.conf中添加一个
<VirtualHost *:80>
DocumentRoot "d:/demo"
ServerName localhost
<Directory "d:/myweb">
# AllowOverride All # Deprecated
# Order Allow,Deny # Deprecated
# Allow from all # Deprecated
# --New way of doing it
Require all granted
</Directory>
</VirtualHost>