Forum Moderators: coopster

Message Too Old, No Replies

How to make webpage to subscribe to RSS?

         

toplisek

10:57 am on Mar 12, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I have code like:
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteCond %{HTTP_USER_AGENT} .
RewriteRule ^([a-z]+)/atom\.xml$ [feeds2.feedburner.com...] [R=301,L]

this is within .htaccess.The webpage should be automatically updated on-the-fly and easily spidered by search engine robots. This script will allow me to create webpages that will always display the most current information from my RSS feed (XML), and because the resulting page is pure HTML, it will be in a format friendly to search engine robots.

1. How to make page that there will be many links to subscribe like:
Choose your reader:...(Insert the url of the news feed )
2. The information in the feed will be updated when the feed contains new content.
3. PHP script for dynamically displaying RSS feeds as HTML.

coopster

10:37 pm on Mar 21, 2009 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



I don't quite understand your question, toplisek, and perhaps others don't either. Is your .htaccess failing? Are you getting error messages?

eeek

12:26 am on Mar 22, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



RewriteCond %{HTTP_USER_AGENT} !FeedBurner

Just change the URL for your feed and let FeedBurner know about it. Then you can redirect the old feed URL to FeedBurner without place RewriteCond games.

toplisek

11:17 am on Apr 22, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



how to change the URL for my feed in the example?
Give me please pure working code as I'm new to this.