Lighttpd: redirect feed traffic to a Feedburner account
Reader chadrick asks, "How to redirect feed traffic to a Feedburner account?"
There is a plugin available for Apache and Wordpress, but it will not work with Lighttpd. So if you want to redirect RSS/atom feed from your domain to Feedburner to get accurate feed stats, you need to use Lighttpd's mod_redirect module.
For example request coming for following urls shoud go to your feedburner a/c:
http://domain.com/feed/ => http://feeds.feedburner.com/MyAccount
http://domain.com/index.php?feed=rss => http://feeds.feedburner.com/MyAccount
http://domain.com/?feed=rss => http://feeds.feedburner.com/MyAccount
Open your lighttpd configuration file and tell lighty to redirect all visitors except Feedburner bot or site.
# vi /etc/lighttpd/lighttpd.conf
Find out your virtual domain configuration and append following directives:
$HTTP["useragent"] !~ "FeedBurner" {
url.redirect = (
"^/feed*" => "http://feeds.feedburner.com/MyAccount",
"^/\?feed=*" => "http://feeds.feedburner.com/MyAccount"
)
}
Replace MyAccount (or feedburner url) with your actual feedburner feed url. Save and close the file. Restart the lighttpd webserver:
# /etc/init.d/lighttpd restart
If you are using a Blogger.com hosted blog (your own domain) put something as follows (e.g. http://mydomain.com/blog/atom.xml):
$HTTP["useragent"] !~ "FeedBurner" {
url.redirect = (
"/blog/atom.xml" => "http://feeds.feedburner.com/MyAccount",
"/blog/rss.xml" => "http://feeds.feedburner.com/MyAccount"
)
}
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in other helpful articles:
- Linux, *BSD and Open Source software Feedburner network
- Lighttpd redirect www.domain.com requests to domain.com or vice versa
- We have moved this blog to wordpress engine
- nixCraft Known Issues: Email Subscriptions and Print Page
- Lighttpd prevent image hotlinking or leeching or direct linking
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



Recent Comments
Yesterday ~ 3 Comments
Yesterday ~ 1 Comment
Yesterday ~ 9 Comments
Yesterday ~ 13 Comments
Yesterday ~ 3 Comments