Page loads normally, but with status 404 [closed]

2

Has anyone seen anything like this?

link

It is a project in laravel 5.7 hosted on the king host, the site is working normally on the local server, but on the web server it loads the page with status 404 and so I can not login or anything, this is the third server that I'm migrating

UPDATE No matter what I put on this page it always gives the 404 error, I've put it right into the laravel route to return only "test" it displays the test with a 404 status

I have some apache logs that I requested per call

Wed Nov 07 17:07:24.503040 2018] [core: info] [pid 116542: tid 140133659547392] [client 2804: 14d: bad4: 9daf: 40d7: 3cc0: 9fd3: fbd: 51362] AH00128: File does not exist: / home / engenhariamrc / www / admin / login

"GET / admin / login HTTP / HTTP / GET / admin / login / admin / login" 1.1 "404 1134" - "" Mozilla / 5.0 (X11; Ubuntu; Linux x86_64; rv: 63.0) Gecko / 20100101 Firefox / 63.0 "51956

    
asked by anonymous 08.11.2018 / 13:06

1 answer

2

Hello. This problem is related to the permissions of the folder where the login file is located. First check which permission is set in the folder, then make a test by changing to chmod -R 777 , but then check the permissions and be careful about security. The correct one would be you set all your directories to 755 and your files to 644

    
08.11.2018 / 14:09