I am looking to 301 redirect (in .htaccess) around 15 WP blog URLs on an old domain to the new, corresponding URLs on a new domain.
Along with enabling the the Apache mod_rewrite module and ReWriteEngine, my .htaccess file contains a combination of the following:
Redirect 301 /old1 http://www.example.com/new1
Redirect 301 /old2 http://www.example.com/new2
Redirect 301 /old3 http://www.example.com/new3
Redirect 301 /old4 http://www.example.com/new4
Redirect 301 /old5 http://www.example.com/new5
Redirect 301 /old6 http://www.example.com/new6
Redirect 301 /old7 http://www.example.com/new7
The problem is, instead of /old1 redirecting to http://www.example.com/new1, it's instead redirecting to http://www.example.comnew1, which of course is invalid.
Does anyone know why this is occurring?