C
C
Curgun2018-09-12 16:18:46
htaccess
Curgun, 2018-09-12 16:18:46

.htaccess how to make such a redirect?

How to make such a redirect from pages like domain.com//page and domain.com/page to domain.com/page/?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vitaly, 2018-09-20
@daruvayc0

First you need to register a redirect from multiple / and then a 301 redirect:

# Редирект на страницу без многократных /.
RewriteCond %{THE_REQUEST} //
RewriteRule .* /$0 [R=301,L]
# 301 редирект
Redirect 301 /page domain.com/page/?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question