thinkphp框架的分页伪静态如何优化实现

thinkphp框架是国内知名的php开发框架,但是在分页问题上对seo并不是很优好,所以我们要将其伪静态化,下面我们改进框架分页规则,让其更利于seo优化。


一、改造说明


示例网址:

http://www.demo.com/list/345.html    第一页

http://www.demo.com/list/345.html?page=2    第二页

http://www.demo.com/list/345.html?page=3    第三页


原有模式如上,均采用GET方式传递参数以?page作为标记,我们将其改造成以GET方式传参以   "_"方式标记,示例网址如下:


http://www.demo.com/list/345.html    第一页

http://www.demo.com/list/345-2.html    第二页

http://www.demo.com/list/345-3.html    第三页


二、改造代码

方案一:全站改造

使用方式:项目下(根目录中)\thinkphp\library\think\Paginator.php,把153行的替换了

1.png

if (!empty($parameters)) {
    // new batch start
    foreach($parameters as $vv){
        if($vv > 1) {
            //非首页
            if($this->currentPage == 1){
                //
                $suffix = '.' . config('url_html_suffix'); //伪静态后缀
            }else{
                $suffix = '-' . $this->currentPage . '.' . config('url_html_suffix'); //伪静态后缀
            }
            $url    = str_replace($suffix, '-', $url);
        } else {
            //首页,只保留协议部分
            $suffix = '-' . $this->currentPage . '.' . config('url_html_suffix'); //伪静态后缀
            $url    = str_replace($suffix, '', $url);
        }
        if($vv == 1){
            $url .= '.html';
        }else{
            $url .= $vv.'.html';
        }
    }
}

方案二:前台改造

if (!empty($parameters)) {
    if(strpos('此处为后台路径',$url)){
        $url .= '?' . http_build_query($parameters, null, '&');
    }else{
        // new batch start
        foreach($parameters as $vv){
            if($vv > 1) {
                //非首页
                if($this->currentPage == 1){
                    //
                    $suffix = '.' . config('url_html_suffix'); //伪静态后缀
                }else{
                    $suffix = '-' . $this->currentPage . '.' . config('url_html_suffix'); //伪静态后缀
                }
                $url    = str_replace($suffix, '-', $url);
            } else {
                //首页,只保留协议部分
                $suffix = '-' . $this->currentPage . '.' . config('url_html_suffix'); //伪静态后缀
                $url    = str_replace($suffix, '', $url);
            }
            if($vv == 1){
                $url .= '.html';
            }else{
                $url .= $vv.'.html';
            }
        }
    }
}


三、路由改造

Route::get('articleList/<id>$', 'Index/articleList'); //文章列表
Route::get('articleList/<id>-<page>', 'Index/articleList'); //文章列表

这里我用的是两个变量,单变量的去掉一个即可


四、seo标题优化

/**
 * 文章列表
 * @param int $page
 * @param int $id
 * @return \think\response\View
 */
public function articleList($id,$page = 0)
{
    if ($page) {
        $title = '我是列表第' . $page . '页数';
 
    } else {
        $title = '我是列表';
    }
    return view();
}


相关推荐

评论