Portal Home > Knowledgebase > Website Down Issues > HTTP Error 403 - Forbidden


HTTP Error 403 - Forbidden




Generally. the HTTP error 403 - Forbidden means that access to the file/folder you are trying to open has been denied, either on purpose or due to a misconfiguration.

If you suspect that only your access is blocked, try a web proxy to hide your identity.

If you are the site administrator check the webserver's error log when troubleshooting. Most web hosting control panels give access to such a tool. In cPanel, it is called Error log. Check the manual for your webserver if you don't have a control panel.

In the error log you will see a list of the last error messages generated by your website. In this list you will find detailed information about each error including: the date and time of the error, some information about the client receiving the error, description of the error and information about which folder or file on your account is generating the error.

Here are some examples of the most common errors and how to fix them:
[Thu Apr 11 01:26:56 2009] [error] [client 127.0.0.10] client denied by server configuration: /home/user/public_html/file.php

This error message may be received when the access of certain IPs to certain files/folders/websites is forbidden by a rule added in the .htaccess file. If you do not want to deny access to this IP you should make sure your .htaccess files do not contain such rules. In order to check if such rules are added to your website you should open the .htaccess file in the folder that generates the error and search for a line such as:


deny from 127.0.0.10
- this rule denies access from a particular IP, in this case 127.0.0.10


deny from all

- this rule denies access from all IPs



If you find such a line you should delete it and save the change. After that the client with this IP should be able to access the files in the folder and will not receive the "403 forbidden" error.
[Thu Apr 11 01:23:34 2007] [error] [client 127.0.0.12] Directory index forbidden by rule: /home/user/public_html/

Such error message will be displayed when a user tries to open a directory which has no index file and at the same time the Indexes option for this directory is turned off. In order to avoid this from happening, you should make sure that the .htaccess file within the directory which displays this error does not contain a line like the one below:

Options -Indexes



Was this answer helpful?

Add to Favourites Add to Favourites    Print this Article Print this Article

Also Read
Flush DNS (Views: 1381)