Answer the question
In order to leave comments, you need to log in
Why doesn't the redirect to index.php work?
AddDefaultCharset utf-8
RewriteEngine on
RewriteBase /
#условие, что все существующие папки не будут обрабатываться регулярным выражением
RewriteCond %{REQUEST_FILENAME} !-f
#условие, что все существующие файлы не будут обрабатываться регулярным выражением
RewriteCond %{REQUEST_FILENAME} !-d
#регулярное выражение, в нашем случае — при любой строке запроса будет открывать index.php,
RewriteRule ^(.*)$ index.php [L]
Answer the question
In order to leave comments, you need to log in
Most likely, if you have Apache, the mod_rewrite.c module is not enabled
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question