duanpu5048 2017-10-17 08:45
浏览 216
已采纳

Yii2:如何使用301重定向旧URL?

I have some URLs from the old version of my site that I want to redirect to their new ones in Yii2 due to SEO purposes, eg. /about-us.php to /about. How do I do that?

I can't use .htaccess, and I can't use urlManager rules because HTTP response status 301 needs to be set.

I tried the following in a bootstrap class but even though the code executes I still just get a 404 when going to the old URL:

if (preg_match("|^/about.php|", $_SERVER['REQUEST_URI'])) {
    Yii::$app->response->redirect('/about', 301)->send();
    return;
}
  • 写回答

2条回答 默认 最新

  • dongtang5776 2017-10-17 08:52
    关注

    Just found the answer myself. My bootstrap attempt was not so bad, I just needed to add Yii::$app->end():

    if (preg_match("|^/about-us.php|", $_SERVER['REQUEST_URI'])) {
        Yii::$app->response->redirect('/about', 301)->send();
        Yii::$app->end();
        return;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 adb连接不到手机是怎么回事?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联
  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目