1. This error occurs, the general Web server is Apache
2. Locate: Apache config file, open the httpd.conf file and make the following changes:
First place: Find
<directory/>
Options FollowSymLinks
AllowOverride None
Order Deny,allow
Deny from all
Satisfy All
</Directory>
Modified into
<directory/>
Options FollowSymLinks
AllowOverride All
Order Deny,allow
# Deny from all
Allow from all
#允许所有访问
Satisfy All
</Directory>
Second place: find:
# onlineoffline Tag-don ' t remove
Order Deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
Modified to:
# onlineoffline Tag-don ' t remove
Order Deny,allow
# Deny from all
# Allow from 127.0.0.1
Allow from all
</Directory>
3. Restart the Apache service.
This article is from the "high-anti-server sales, bring operation and maintenance" blog, please be sure to keep this source http://kenvik.blog.51cto.com/11000054/1858409
HTTP Error: Forbidden You do have a permission to access ... on this server.