我的应用程序中有类似的情况,我正在以下列方式处理:
基本上,我使用的 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]);
}
}