redirect and change a single URL segment redirect and change a single URL segment codeigniter codeigniter

redirect and change a single URL segment


You can use RedirectMatch with regex support:

RedirectMatch 301 ^(.*/)?feline(/.*)?$ $1cat$2

Clear your browser cache before testing this rule.

Using mod_rewrite:

RewriteEngine OnRewriteRule ^(.*/)?feline(/.*)?$ /$1cat$2 [R=301,NE,NC,L]