Answer the question
In order to leave comments, you need to log in
How to configure .htaccess to add .html extension?
Links like https://mysite.ru/news/aticle should be redirected to https://mysite.ru/news/aticle.html.
This option:
RedirectMatch 301 /news/(.*)$ https://mysite.ru/news/$1.html
Answer the question
In order to leave comments, you need to log in
RewriteCond %{REQUEST_FILENAME} !-d
# если это не директория
RewriteCond %{REQUEST_FILENAME} !-f
#если это не файл
RewriteCond %{REQUEST_URI} ^.+\.html(|/)$
#Если на конце уже нет .html или .html/
RewriteRule ^(.+)/$ http://www.site.ru/$1 [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question