转裁源于: http://blog.qiyuange.net/?p=100 apache 403 错误代码如下 you don't have permission to access / on this server. python 1 2 forbidden you don ' t have permission to access / on this server . 解决 方法 查找如下代码 python 1 director
转裁源于:
http://blog.qiyuange.net/?p=100
apache 403 错误代码如下
you don't have permission to access / on this server.
python
1
2
forbidden
youdon'thavepermissiontoaccess/onthisserver.
解决方法
查找如下代码
python
1
directory/>
如果有 require all denied 这句就把他注释掉
require all denied
python
1
2
3
4
directory/>
allowoverridenone
#require all denied 删除或注释掉
/directory>
没有 就继续查找
deny from all
python
1
2
orderdeny,allow 删除改行
denyfromall 修改为 allowfromall