Because it does not load the images on my web page, with the code forbidden 403

3

I have uploaded a page with adobe Muse, and the images do not load, I have tried in another hosting and if it is possible, that means the forbidden 403.

I will appreciate explaining this effect.

Thanks and regards

    
asked by Jean Zevallos 23.08.2016 в 18:48
source

2 answers

1

You must correctly configure the permissions, it seems that you are using Nginx as Web server in a linuxera distribution, therefore, execute the following command:

chmod 755 /ruta/de/tu/public_html/images/ -v

Or using the FTP program give those permissions to your folder on the server.

    
answered by 23.08.2016 в 19:06
0

Error 403 in the HTTP protocol indicates that access to the URL you are trying to access from the web server has been denied. An example of when this occurs would be when trying to access a URL in the administration panel of a website without being identified as administrator of it. It is also commonly used to prevent access to private directories of the web server.

As for how to solve it in your case since it is assumed that the server administrator is you, try to see if the response of @fredyfx is useful for you.

    
answered by 23.08.2016 в 21:06