SLIM REST | Ошибка возврата.htaccess 500
Я пытаюсь установить SLIM Framework в корень.
Мой.htaccess выглядит так:
RewriteEngine On
# Some hosts may require you to use the `RewriteBase` directive.
# If you need to use the `RewriteBase` directive, it should be the
# absolute physical path to the directory that contains this htaccess file.
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
И когда я пытаюсь загрузить http://mydomain.com/ я всегда получаю 500 Ошибка.
Мой индексный файл:
...
$app->get("/", function () {
echo "<h1>Hello Slim World</h1>";
});
...
Если я пытаюсь переименовать мой.htaccess -> он работает. Где моя ошибка? Благодарю.