Answer the question
In order to leave comments, you need to log in
How to remove folders from url?
Hello.
What is the rule to make in .htaccess
so that the view path site.ru/modules/ЛЮБАЯ__ПАПКА/любой_файл
turns into site.ru/любой_файл
?
For example, from site.ru/modules/signup/index.php
get site.ru/signup
.
And if I go to site.ru/signup
everything 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
RewriteCond %{REQUEST_URI} ^/dir1/(.*)$
# если строка начинается с /dir1/
RewriteRule ^(.*)$ /dir1%1 [R=301,L]
#Перенаправить все урлы с начинающиеся с dir1 на dir2 с сохранением дальнейшей структуры URL
(.*)[^/]
- any but not a slash
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question