I have a problem with my .htaccess redirects. I have both a rewrite rule to remove the "index.php?/" from my URLs (I'm using a PHP framework), and also 301 redirects redirecting from old pages:
# START THE REWRITE
RewriteEngine on
Options -Indexes
Options +FollowSymLinks
RewriteCond $1 !^(index\.php|assets)
RewriteRule ^(.*)$ /index.php?/$1 [L]
# 301 REDIRECTS
Redirect 301 /oldpage.html http://www.example.com/old_page
Redirect 301 /page.html http://www.example.com/page
Redirect 301 /page-that-no-longer-exists.html http://www.example.com/
I can't rename my .html files with another rewrite rule as some of the pages don't match the new pages, and some other .html pages are redirecting to the home page - hence the 301 redirects.
And so, because of the rewrite rule, the first 301 redirect will direct to
http://www.example.com/old_page?/old_page.html
instead of
http://www.example.com/old_page
I have tried reordering the contents of the .htaccess file (which does nothing), setting the rewrite to "off" after the rewrite (which stops the 301's working) and writing specific rewrite rules for each 301 (none of which worked).
I'm sure i'm missing something. Cheers.
OK, I've come up with a couple of solutions.
The first is to send the redirect in the example to
This does not apply the rewrite removing the "index.php?", but it does work.
The second work around is to edit the rewrite conditions to exclude any .php or .html files:
This may also exluce any URLs that end in .php or .html, meaning the rewrite won't work, and your framework will break, but as long as you stay away from that you should be ok.
Your issue is that this line:
RewriteRule ^(.*)$ /index.php?/$1 [L]
forces a query parameter in that rewrite. Some hosts are setup this way, one I know of in particular is DreamHost. So, anything that is redirected appears broken.You can try this
RewriteRule ^dir/file.php$ http://webpage/newdir/file2.php [R=301,L]