A
A
amdma2022-02-18 03:16:21
htaccess
amdma, 2022-02-18 03:16:21

How to do so with index.php?

What to write in htaccess so that if you write my.com / here any / here any
and you stay on the index.php page but / remain?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rst0, 2022-02-18
@Rst0

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 question

Ask a Question

731 491 924 answers to any question