简体   繁体   中英

HTTP Server Error 403. Forbidden

I am getting the following error:

Forbidden: You don't have permission to access [directory] on this server.

I need direct access to this directory and sub folders on that directory so that my Android Application can communicate with it.

I tried putting folders on a Hosting Server and everything works fine.

But, I am doing an academic project and I need to store these folders and scripts on a University Web Server which can talk to localhost locally.

1.
If you have the possiblity and your server is a linux server, you can change the permissions with something like

sudo chmod -R 777 /var/www/folder

Or completely change the owner with

sudo chown -R user /var/www/folder


2.
Look into the apache configuration files and also the .htaccess , if the directory is blocked by

 Deny from all 

Or simply not allowed. You could allow the directory by creating a .htaccess file and enter

 <Directory yourdirectory> Order allow,deny Allow from all </Directory> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM