0

我已经检查了这个:CakePHP and .htaccess: how to redirect url with query string但它对我不起作用。

我在 Google 中有这样的 url:/details.php?id=1234 并希望它重定向到 url /details/1234

有没有办法使用蛋糕重定向:http ://book.cakephp.org/2.0/en/development/routing.html#redirect-routing ?

还是我需要在 htaccess 中执行此操作?如果是,在哪一个?/root/htaccess 还是 /root/webroot/htaccess?

请指教!提前非常感谢!

4

1 回答 1

0

我的应用程序中有类似的情况,我正在以下列方式处理:

基本上,我使用的 URL 系统与现在不同。书签在 Facebook 和整个网络上......无论如何,人们正在访问我的页面

http://www.domain.com/?c=123&a=2261

c=123 指的是文章所属的类别,a=2261 是指迁移到我的新站点的文章 id。现在我的网址如下:

http://www.domain.com/article/slug-for-the-article-in-question

我在我的app_controller.php

function CheckOldUrl(){
    preg_match("/a=(\\d{1,})/ui", $_SERVER['REQUEST_URI'], $matches);
    if(!$matches == NULL){
        $this->redirect('/articles/articleRedirect/'.$matches[1]);
    }
}

然后我在我的文章控制器(articleRedirect)中设置了一个函数来检查数据库中的正确文章,获取它的 slug 并重定向到正确的新文章 url。

function articleRedirect($article_id = NULL){
        $this->Article->recursive = -1;
        $slug = $this->Article->findById($article_id);        
        if($slug == NULL){
            $this->Session->setFlash('This article does not exist!','default',array('class'=>'alert_error'));
            $this->redirect('/articles');
        }else{
            $this->redirect('/article/'.$slug['Article']['slug']);
        }
}


无论如何,对于您,我会建议以下内容,尽管我尚未对其进行测试....

function beforeFilter(){
    ...
    $this->CheckOldUrl();
    ...
}

function CheckOldUrl(){
    preg_match("/id=(\\d{1,})/ui", $_SERVER['REQUEST_URI'], $matches);
    if(!$matches == NULL){
        $this->redirect('/articles/show/'.$matches[1]);
    }
}
于 2012-05-16T02:37:07.200 回答