|
#1
| ||||
| ||||
| I was wondering, if I don't want to use feedburner to publish RSS because the feed looks like crap (all that free advertising etc, its too hard for readers of my site to comprehend whats on the screen) I've created an xml file and validated it properly etc. I created a subdomain called: http://rss.mydomainhere.com and the only file I have inside that folder is my "feed.xml" file. How do I get around typing in the actual xml filename to view my feed? I just want the above website address to view my feed like the rest of the world seems to know how to do.. am I missing something? Also, is there any way to add good analytics to track feeds? I know google just bought out feedburner but, until then and until improvements come up, I just want simple access via the url above. Thanks a lot! |
|
#2
| ||||
| ||||
| You can do it easily through an http redirect as long as you have the ability from your host to use .htaccess files. Create a file called .htaccess at the root directory for that sub domain. In your .htaccess file put this code Code: Redirect 301 /index.html http://rss.mydomainhere.com/rssfile.xml Alternatively if you don't have .htaccess because your host doesn't allow it, you can use php to set the header. Create a file called index.php and put this in it: Code: header("Location: /rssfile.xml",TRUE,301); Code: header("Location: /rssfile.xml");
__________________ MacBook Pro 2.16GHz Core2Duo 3GB RAM, G4 1.4GHz OSX Tiger 1.25GB RAM, Dual 2GHz G5 OSX Tiger 2GB RAM (freakin shweet) Athlon 64 Windoze XP for school work (programming) 1GB RAM dferns@macosx.com |
|
#3
| ||||
| ||||
| Thank you so much for this detailed description! I really appreciate it! |