Why does error 500 appear? Already me and the htaccess file, it does not help at all
- If you are given an exhaustive answer, mark it as correct (a daw opposite the selected answer). - Nicolas Chabanovsky ♦
|
2 answers
Most likely error 500 due to the fact that the web server does not have the right to write to the storage folder. Read the Apache log
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine On # Handle Front Controller... RewriteCond %{REQUEST_FILENAME} !-d # Redirect Trailing Slashes... RewriteRule ^(.*)/$ /$1 [L,R=301] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> - Put the right now error 403 - quaresma89
- @ quaresma89 403 htaccess now needs to be changed edited answer - Froxz
- Vseravno 403 error. Is it necessary to set it up in htaccess? or in the public folder? - quaresma89
- @ quaresma89 in the public folder and your
apacheshould be configured asdocument_root path/public- Froxz
|
Give rights 777 instead of 755 to the storage folder and it should work
|