带有漂亮URL的Yii分页

时间:2018-09-04 02:15:18

标签: php .htaccess pagination yii2 friendly-url

我已经实现了漂亮的URL,除了分页之外,这些URL可以在任何地方使用。我一直在寻找包括Paging with custom urls 的解决方案 但这似乎对我不起作用。

我的.htaccess文件中有这个

        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)$ index.php?/$1 [L]

然后我的web.php文件中有这些规则

      ''=>'site/index',
        'site/<title:\w+>'=>'site/index'
        'site/<title:\w+>/<page:\d+>'=>'site/index',
        '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
        '<controller:\w+>/<action:\w+>/<slug:\w+>' =>    
        '<controller>/<action>',
        '<controller:\w+>/<action:\w+>' => '<controller>/<action>',
        'site/find/<slug>' => 'site/find',
        '/<slug>'=>'site/find',
        'defaultRoute'=>'site/index'

该分页应该在站点索引上起作用。我可能会缺少什么?

1 个答案:

答案 0 :(得分:1)

您的规则顺序不正确-您必须在更通用的规则(模式中没有页面)之前放置更具体的规则(模式中有页面):

'' => 'site/index',
'site/<title:\w+>/<page:\d+>' => 'site/index',
'site/<title:\w+>' => 'site/index',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>/<slug:\w+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
'site/find/<slug>' => 'site/find',
'<slug>' => 'site/find',