0

How to 301 redirect domain.com/ to domain.com so if someone open domain.com/ with / on end we need 301 redirect to domain.com without / on end, and this need affect on all pages:

domain.com/username/ to domain.com/username domain.com/tag/lol/ to domain.com/tag/lol

mark8422
  • 25
  • 7

1 Answers1

-1
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)/$ /$1 [L,R=301]

SOURCE: Htaccess: add/remove trailing slash from URL

Abhishek Gurjar
  • 7,426
  • 10
  • 37
  • 45
Quiron
  • 340
  • 2
  • 12