I have a Wordpress blog on my domain that was set up by a different web admin. All of the posts are filed under this file structure:
http://www.example.com/blog/index.php/2012/04/24/name-of-the-post/
I am trying to use my .htaccess file to 301 Redirect links to the old posts, to their new address seen here (notice it is the same URL, except with the /index.php missing):
http://www.example.com/blog/2012/04/24/name-of-the-post/
In my .htaccess file, I am trying to redirect the URLs with this:
RewriteEngine on
RewriteRule ^blog/index\.php/([A-Za-z0-9-/.]+)$ http://www.example.com/blog/$1 [R=301]
QUESTION: When I use the above RegEx in my .htaccess file, I get an error "No input file specified." in the browser, and the Redirect does not happen. What am I doing wrong? Is there a problem with my Regular Expression? Or is there something else I'm missing?
error.log. – LazyOne Apr 24 '12 at 13:58