您的位置:首页 > 其它

wamp You don't have permission to access / on this server等问题的解决.

2017-02-21 14:24 615 查看

Forbidden

You don't have permission to access /index.phpon this server.

然后也是找了很多,多是说什么allow from all等等的问题。

但无论怎么设置都是这个问题。几经波折,

发现把Options Indexes FollowSymLinks 后面添加上 ExecCGI就好使了。

<VirtualHost *:80>
DocumentRoot D:/wamp/www/aa
ServerName localhost
<Directory "d:/wamp/www/aa">
Options Indexes FollowSymLinks ExecCGI
Order allow,deny
Allow from all
AllowOverride All
</Directory>
</VirtualHost>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐