0
votes

I need a 301 mod rewrite rule that will redirect the following example URL

http://www.example.com/people/john-doe/

to

http://www.example.com/people/john-doe (no slash)

It will only apply to URLS in the people directory.

1

1 Answers

0
votes

Try:

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

or using mod_alias:

RedirectMatch 301 ^/people/(.*)/$ /people/$1