I had a heck of a time redirecting my rss feed to pheedo. Even though it’s basic rewrite rules, I’m including it here in case anyone has a problem:
In my webroot .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} !^Pheedo.*
RewriteRule ^/?ipo/rss/everything/?$ http://www.pheedo.com/f/ipod_observer [R,L]
Where:
ipo is my renamed index.php file
rss is my template group
everything is my template
If you put this in your httpd.conf file instead, I think the RewriteRule line needs to be:
RewriteRule ^/ipo/rss/everything/?$ http://www.pheedo.com/f/ipod_observer [R,L]
since in httpd.conf the rule needs to start with a slash, where it can’t in the .htaccess file.
