I used to have a blogger blog at the same URL hosted elsewhere. The blogger RSS feed was
http://mypage.me.com/atom.xml
This URL now gives a 404, since Wordpress publishes feeds at, among other places,
http://mypage.me.com/wp-rss2.php
The above according
http://codex.wordpress.org/WordPress_Feeds
I've set up the redirect recommended on the Wordpress website, by creating public_html/mypage/.htaccess, and placing within it
RewriteRule ^atom.xml(.*)? /wordpress/?feed=rss2 [QSA]
The atom.xml URL is still 404. It doesn't seem to matter what I rewrite to, so I'm wondering whether the .htaccess file in public_html/mypage is even being read. How can I check? Thanks.