Re: RSS without extension

2010-02-22 Thread cricket
A bit more info. RequestHandler is loaded in AppController. PostsController::index() has: public function index() { $this->pageTitle = 'Blog'; if($this->RequestHandler->isRss()) { $posts = $this->Post->find( 'all',

RSS without extension

2010-02-21 Thread cricket
I'm trying to set up RSS for my PostsController and I'd like to have extensionless URLs.Instead of using /blog/index.rss (which works, btw) I'd like to use /blog/feed for the RSS URL. I can't figure out why this isn't working: Router::parseExtensions('rss'); Router::connect( '/blog/feed',