Search code examples
.htaccessdrupal-7

URL Redirect from .htaccess file


How can I redirect url of format

www.example.com/movies/[anything]/[anything]/[string].html
www.example.com/tv/[anything]/[anything]/[string].html
www.example.com/videogame/[anything]/[anything]/[string].html

to

www.example.com/redirect/movies/[string]
www.example.com/redirect/tv/[string]
www.example.com/redirect/videogame/[string]

Solution

  • With help of @anubhava here is what I ended up with.

    RewriteEngine On
    RewriteBase /
     RewriteRule ^movies/([A-Za-z-]+)/([A-Za-z-]+)/([A-Za-z0-9-]+)\.html$  redirect/movies/$3 [L,NC,R]
     RewriteRule ^tv/([A-Za-z-]+)/([A-Za-z-]+)/([A-Za-z0-9-]+)\.html$  redirect/tv/$3 [L,NC,R]
     RewriteRule ^videogame/([A-Za-z-]+)/([A-Za-z-]+)/([A-Za-z0-9-]+)\.html$  redirect/videogame/$3 [L,NC,R]