使用Zend路由器的Seo友好网址

时间:2011-09-20 18:13:44

标签: php zend-framework zend-controller-router

我想在我的Zend Framework应用程序中创建seo友好的URL,但是如何正确的语法:

$newsroute = new Zend_Controller_Router_Route(
   'news/:action/:id_:title',
    array( 'controller' => 'news' ));

:id_:title显然不起作用,因为Zend不知道_是一个分隔符?我是否需要使用正则表达式路由器,或者它也能正常使用吗?

2 个答案:

答案 0 :(得分:2)

确实,正则表达式路线可以做到这一点。

如果由于任何原因您不想使用正则表达式路由,可以通过前端控制器插件进行简单的解决方法:

//replace the :id and :title params with a single one, mapping them both
$newsroute = new Zend_Controller_Router_Route(
        'news/:action/:article',
         array( 'controller' => 'news' )
   );

// in a front controller plugin, you extract the Id form the article param
function function dispatchLoopStartup( Zend_Controller_Request_Abstract $request ) {

    if( $request->getParam( 'article', false ) ){

        $slug = $request->getParam( 'article' );
        $parts = array();
        preg_match( '/^(\d+)/', $slug, $parts );

        // add the extracted id to the request as if there where an :id param
        $request->setParam( 'id', $parts[0] );
    } 
}

当然,如果需要,你也可以用同样的方式提取标题。

当您想要生成网址时,不要忘记构建您的“文章”参数:

 $this->url( array( 'article' => $id.'_'.$title ) );

答案 1 :(得分:2)

为避免处理包含特殊字符的链接,可以将此插件用于Zend Framework。

https://github.com/btlagutoli/CharConvert

$filter2 = new Zag_Filter_CharConvert(array(
               'onlyAlnum' => true,
               'replaceWhiteSpace' => '-'
           ));
echo $filter2->filter('éééé ááááá ? 90 :');//eeee-aaaaa-90

这可以帮助您处理其他语言的字符串