I am using blueimp file upload for uploading files, it is working fine on my local and other online server, but shows me error of not found
$('#portfolioupload').fileupload({
dataType: 'json',
url: 'http://url/server/php/',
maxNumberOfFiles:1,
autoUpload:true,
});
shows me server/php not found, where as while visiting from browser it shows, checked permissions are already set to 777, Its only not working on AWS.
Console
Browser view
Can you please suggest any solution?
Your Apache doesn't know it should use
index.php
as index page.Add
DirectoryIndex
command to your Apache config or.htaccess
. Something like this: