1
I have a website and need to attach to this site a folder called processes where when the user type meu-site.com/processos
or meu-site.com/processos/index.html
, be uploaded the file. Locally I can do this by inserting the processes folder into the public folder of the project.However when I upo to the server gives the message I do not have permission to access the public folder on that server.Thank you from now
I tried to use the following route:
Route::get('processos',function(){
return Redirect::to('processos/index.html');
});
However it did not work and I do not know how to call this file and where this folder processes should be in the project, since it is an external folder.
Post your file and web.php of the routes folder, please will help in the answer
– Pedro Neri