我在我的网站上使用自定义主题。我的主题网址是:http:/ localhost / main / theme
我需要分页才能显示页面中的所有用户。我想设置分页网址如下:
的http:/本地主机/主/主题/用户/页:1
这是我的路线:
Router::connect('/main/:theme/user/',
array('controller' => 'custom_themes', 'action' => 'user'),
array(
'pass' => array('theme'),
'theme' => '[a-z]+'
)
);
分页页面是:
$this->paginator->options(array('url'=> array(
'controller' => 'custom_themes',
'action' => 'user',
'theme'=>$this->params['theme'])
));
但我错了网址。我找不到问题所在。请帮帮我。