Я загрузил свое приложение Laravel в подкаталог на моих хостах (без рута), поэтому оно выглядит следующим образом:
website / myapp / index.php
В подкаталоге «myapp» у меня есть все файлы из папки «PUBLIC» Laravel.
У меня есть .htaccess, расположенный в website / myapp / .htaccess , который выглядит следующим образом:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Маршрутизация с тех пор, чтобы работать отлично.При наведении курсора на ссылку в меню я получаю правильный URL.Например:
- mydomain.com / about_us
- mydomain.com / contact
- mydomain.com / регистрация
- mydomain.com / login
и т. Д. *
Проблема в том, что я нажимаю на эти ссылки, чтобы перейти на эти страницы, я получаю сообщение об ошибке:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.4.29 Server at gerichtsfest.eu Port 80
Так что, на самом деле, я просто могу получить доступ к домашней странице, но не к другим страницам.
Я прочитал тонны учебников .htaccess, но они стали еще более грязными.Я не знаю, что изменить в .htaccess, чтобы он правильно перенаправил
Любая помощь будет оценена