apache 403错误 You don't have permission to access on this server.
在配置好了Apache服务器后,测试已经通过了,但是通过浏览器访问localhost时,出现403错误提示, 这是由于你更改了你的DocumentRoot,而更改了这个默认值后,下面还有一个值是要随着更改的。就在它下面不远的地方,有这样一段: ----------------------------------------------- http://hi.baidu.com/vking/blog/item/bc50f3d380296adfa9ec9af4.html |
Not Found
The requested URL /forum.php was not found on this server.
我的是apache的httpd.conf设置有误:
<VirtualHost *:80>
DocumentRoot "D:/wamp/www/sun2"
ServerName http://www.sun.com/
<Directory "D:/wamp/www/sun2">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
这里的设置导致了访问其他比如localhost出现404上面的错误。