Yes, I got it now. But I found one more problem.

http://localhost/famousquotes/authors/first-letter/m   (url)
Router::connect('/authors/first-letter/:letter', array('controller' => 
'authors', 'action' => 'first'),array('pass' => array('letter'),'letter' => 
'[a-zA-Z]'));  (router)

This is working good. But 
<?php echo $html->link('M', 
                array(
                    'controller' => 'authors',
                    'action' => 'first',
                    'letter' => 'm'
                )
            );
?>

When i click this link, It works good. But the paging (cakephp's default 
paging) gives link like this 
http://localhost/famousquotes/authors/first/m/page:2

Can we fix it?

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to