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:

  • [error] [client 127.0.0.45] 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.45

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

 

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. 

  • [error] [client 127.0.0.76] 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

 

However, if this error continues to show frequently on your pages, it might also indicate a problem with your account. Please log in your Client Area and open a new ticket to the Support Department.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Error: Sessions directory is not writable

By default, such an error is received when you use a custom php.ini file and the directive...

HTTP Error 404 - Not found

Below we will focus on the two most common reasons for a website to display a "404 Not Found"...

HTTP Error 500 - Internal server error

When you receive an error "Internal server error 500" on your site, the best way to find the...

HTTP error codes explained

There are multiple HTTP codes that you may come across. Below you can find a summary of the most...

I add directives to my .htaccess file and I receive "Internal Server Error"

You have added a directive to your local .htaccess file and receive an "Internal server error"....