After transferring a working project from localhost to server, it displays an error
Internal Server Error
I was unable to complete your request.
After transferring a working project from localhost to server, it displays an error
Internal Server Error
I was unable to complete your request.
For those who can not configure Laravel 5. At the moment there is such a solution:
Create .htaccess in the root directory with the following contents:
RewriteEngine On RewriteCond %{REQUEST_URI} !^public RewriteRule ^ public/index.php [L]
Next in the htaccess file, which is in the public folder, comment out
Options -MultiViews
After that, everything should work correctly.
Source: https://ru.stackoverflow.com/questions/544309/
All Articles
composer install
not forgotten, the database was configured,.env
transferred, permissions on folders allow php to write to/storage
and/bootsrap/cache
? - Sergiks