Matjaz Toplisek - 2009-05-25 17:27:31
I enclose just sample. I would like to make it on the right Subscribe Now! section and under this
news. I have currently XML.
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.
4. redirect the old feed URL to FeedBurner
Within .htaccess.:
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteRule ^([a-z]+)/atom\.xml$ http://feeds2.feedburner.com/bgv/$1 [R=301,L]
Need help.