L
L
Lucker_Kophe2020-11-07 17:39:20
htaccess
Lucker_Kophe, 2020-11-07 17:39:20

How can I rewrite url via htaccess?

Hello, is it possible to rewrite the url from site.ru/dop_pages/aerial-survey/index.html to site.ru/aerial-survey/ while remaining on the same page through the htaccess file.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dodo512, 2020-11-07
@Lucker_Kophe

RewriteCond %{THE_REQUEST} " /dop_pages/([^?]+)/index\.html"
RewriteRule ^ /%1/ [R=301,L,NE]

RewriteCond %{DOCUMENT_ROOT}/dop_pages/$1/index.html -f
RewriteRule ^(.+)/$ /dop_pages/$1/index.html [L]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question