Answer the question
In order to leave comments, you need to log in
Where did the debugger disappear?
Greetings! Installed via composer yii2 advanced, everything would be fine, but I can’t understand where the debugger has gone at the bottom of the page, like before when I installed yii2 it was always ... Should it be by default or has something changed? I googled but didn't solve the problem, please help me.
Answer the question
In order to leave comments, you need to log in
I solved the problem, it turns out that there was not a very successful .htaccess in both web folders. Replaced them with
# Mod_Autoindex
<IfModule mod_autoindex.c>
# Запрещаем просмотр содержимого папок
Options -Indexes
</IfModule>
# Mod_Rewrite
<IfModule mod_rewrite.c>
Options +FollowSymlinks
# Включаем mod_rewrite
RewriteEngine On
# Если это папка или файл, открываем её/его
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# В противном случае перенаправляем на index.php
RewriteRule . index.php
</IfModule>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question