Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
All requests except existing files and folders will be on index.php
<IfModule mod_rewrite.c>
# Запускаем движок замены
RewriteEngine on
# Не применять к существующим директориям
RewriteCond %{REQUEST_FILENAME} !-d
# Не применять к существующим файлам файлам
RewriteCond %{REQUEST_FILENAME} !-f
# если запрашиваемый объект с дописанным расширением php - файл
# RewriteCond %{REQUEST_FILENAME}\.php -f
# делаем замену с дописыванием .php
# RewriteRule ^(.*)$ $1.php
# или Редирект всех запросов на index.php
# RewriteRule .* index.php [L]
RewriteRule ^(.*)$ index.php?url_param=$1 [L,QSA]
</IfModule>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question