K
K
khomaldi2019-07-08 13:41:11
htaccess
khomaldi, 2019-07-08 13:41:11

How to remove folders from url?

Hello.
What is the rule to make in .htaccessso that the view path site.ru/modules/ЛЮБАЯ__ПАПКА/любой_файлturns into site.ru/любой_файл?
For example, from site.ru/modules/signup/index.phpget site.ru/signup.
And if I go to site.ru/signupeverything worked (that is, site.ru/modules/signup/index.php was loaded)
Thank you.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Viktor Taran, 2019-07-08
@shambler81

RewriteCond %{REQUEST_URI} ^/dir1/(.*)$ 
# если строка начинается с /dir1/ 
RewriteRule ^(.*)$ /dir1%1 [R=301,L] 
#Перенаправить все урлы с начинающиеся с dir1 на dir2 с сохранением дальнейшей структуры URL

I wrote more details here
https://klondike-studio.ru/blog/snipet-for-htaccess/
If you need to limit the number of directories
(.*)[^/]- any but not a slash

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question