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',
        array('controller' => 'posts', 'action' => 'index', 'url' =>
array('ext' => 'rss'))
);

Router::connect(
        '/blog/*',
        array('controller' => 'posts')
);

Any ideas?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to