Open Web page, result access hint: 403 Error! Turn off IE's "show friendly HTTP Error" and show no access (you don't have permission to access/on this server)!
Apache, version 2.2.8, after the installation completes, carries on the related test, configures the next php php.in file, again the localhost opens discovers the error: HTTP Error 403-forbidden, namely 403 forbidden:you don ' t have Permission to access/on the this server.
May be an issue caused by insufficient permissions.
Workaround:
Open the Apache configuration file httpd.conf, and check it line by row. Found it:
Copy CodeThe code is as follows: <directory/> Options followsymlinks allowoverride None Order deny,allow deny from all </Directory>
Since PHP is configured, "Deny from all" here denies all connections.
You can resolve the issue by modifying this line to allow from all.
The modified code is:
Copy CodeThe code is as follows: <directory/> Options followsymlinks allowoverride None Order deny,allow allow from all </Directory>
Open http://localhost in Browser, show it works! Problem solving.
Summarize:
Apache Server 403 Error Forbidden Access workaround