Skip to content

How to migrate Feedburner feed to URI.LV

As Google is every day shutting down more and more services that do not comply with their philosophy of search and social, I became more and more worried what will happen to my Feedburner feed.

I searched for the alternatives and stumbled upon URI.LV which looks very promising so I decided to migrate Feedburner feed.

What I really liked is White label, which allows that URI.LV never appear in your feed or somewhere else. You can leave the service whenever you want, if you choose so.

Great thing is that your subscribers will not know that something has changed, redirection on feedburner will make sure for that (let’s hope it will stay even when Feedburner is eventually closed).

Another great thing is a WordPress plugin which makes a migration really simple and straightforward.

How to migrate feed from Feedburner

Migration is pretty simple:

Register an account on URI.LV

Create an account on URI.LV, it’s simple and free.

Add new feed

When you do this, make sure you give an original feed URI (ie. http://www.domain.com/feed), not the FeedBurner one!

uri.lv-create-feed

Choose an alias and be sure to check ‘Display your actual feed URL’ checkbox.

Install WordPress plugin

Install Uri.lv WordPress Plugin   , activate it and handle the configuration on plugin settings page, which is as  simple as connecting to Uri.lv and choosing the right feed.

plugin-settings

Plugin will redirect all requests to your original feed url through Uri.lv address. And when you add new content, it will ping the Uri.lv service to update the feed.

Alternative settings (if you don’t have WordPress)

Alternative is to add this on top of your .htaccess file:

[code lang=”php”]
# BEGIN URI.LV
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
RewriteCond %{HTTP_USER_AGENT} !uri\.lv [NC]
RewriteRule ^feed/?$ http://feeds.uri.lv/MyCoolWebsite [R=302,NC,L]
# END URI.LV
[/code]

Delete Feedburner feed

Now go to your Feedburner account and first make sure that your original feed URL is the one which you registered with Uri.lv. If that is the case, click on delete feed and be sure to check ‘with permanent redirection’ checkbox. If everything went all right, your feed will look similar to this:

feedburner-status

That’s it, your feedburner feed is now permanently redirected to your original feed URL, which is redirected through Uri.lv service for statistics, push service, newsletters and much more.

URI.LV API

The simplest way to get subscribers count is by going to the JSON file that is generated each day. URL for this file can be found inside your Uri.lv configuration. It looks like this:

[code lang=”javascript”]
{
"subscribers": 705,
"hits": 1063,
"graph": {
"title": "URI.LV Subscribers for \/codeforest",
"type": "line",
"datasequences": [
{
"title": "Feed",
"color": "red",
"datapoints": [

]
}
]
}
}
[/code]

You get the picture. If you need more control, check the URI.LV API documentation.

What’s next

Well, I have to wait for a couple of days for statistics to show, then I will write a small tutorial on how to show your subscribers count.