RSS feed Redirection problem fixed!

I was having difficulty getting the RSS feed redirected to the new location after the move. But I figured it out — it was actually right in my admin toolkit. Just used the .htaccess wrapper program to create a permanent redirect (all on one line):

RedirectMatch permanent ^/index.rdf$ http://tintedpane.com/wp/index.php/feed

I did try that before, but without the character matching ^ and $. And instead of using a javascript or meta redirect such as this in a blank index.html file:

< script type="text/javascript" / >
location.replace(’wp/index.php’);
< meta http-equiv="Refresh" content="0; URL=wp/index.php" / >

I put in another redirect for the main page:

RedirectMatch permanent ^/$ http://tintedpane.com/wp/index.php

Leave a Comment