Answer the question
In order to leave comments, you need to log in
How to remove folder from url using .htaccess?
There is a url like:
example/sites/first/index.html
example/sites/second/index.html
example/sites/third/index.html
and so on...
It is necessary that when entering example/first it shows the page from example/sites/ first/index.html
Likewise with the others.
Answer the question
In order to leave comments, you need to log in
RewriteCond %{REQUEST_URI} ^(.*)/dir1/(.*)$
# если строка содержит /dir1/
RewriteRule ^(.*)$ %1/dir2/%2 [R=301,L]
#Перенаправить все урлы с начинающиеся с dir1 на dir2 с сохранением дальнейшей структуры URL
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question