Created
October 28, 2015 18:44
-
-
Save ryandonsullivan/55262d5d5ba8d00dbcac to your computer and use it in GitHub Desktop.
This redirects all Blogger RSS feeds to their corresponding WordPress RSS feeds when added to .htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Author: WP Site Care | |
#Link: http://www.wpsitecare.com/import-blogger-to-wordpress/ | |
#ATOM Feeds | |
RewriteRule atom.xml feed/atom/ [L,R=301] | |
RewriteRule feeds/posts/default feed/atom/ [L,R=301] | |
#RSS FEEDS | |
RewriteRule feeds/posts/default?alt=rss feed/ [L,R=301] | |
RewriteRule rss.xml feed/ [L,R=301] | |
#Comments Feed | |
RewriteRule /feeds/comments/default comments/feed/ [L,R=301] | |
RewriteRule /feeds/comments/default?alt=rss comments/feed/ [L,R=301] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can learn exactly to import Blogger to WordPress on the step-by-stop guide associated with this code.