Yii2:如何使用 301 重定向旧 URL?
Yii2: how to redirect old URLs with 301?
出于 SEO 目的,我想将旧版本网站中的一些 URL 重定向到 Yii2 中的新版本,例如。 /about-us.php
到 /about
。我该怎么做?
我不能使用.htaccess
,我不能使用urlManager
规则,因为需要设置HTTP响应状态301。
我在 bootstrap class 中尝试了以下操作,但即使代码执行了,我在转到旧 URL 时仍然只得到 404:
if (preg_match("|^/about.php|", $_SERVER['REQUEST_URI'])) {
Yii::$app->response->redirect('/about', 301)->send();
return;
}
刚刚自己找到了答案。我的 bootstrap 尝试还不错,我只需要添加 Yii::$app->end()
:
if (preg_match("|^/about-us.php|", $_SERVER['REQUEST_URI'])) {
Yii::$app->response->redirect('/about', 301)->send();
Yii::$app->end();
return;
}
也是另一种变体。
有一种更简洁、更简单的方法:
class MyController extends Controller
{
public function beforeAction($action)
{
if (in_array($action->id, ['about-us'])) {
Yii::$app->response->redirect(Url::to(['about']), 301);
Yii::$app->end();
}
return parent::beforeAction($action);
}
}
希望对您有所帮助!
Yii 1.1
public function actionOldPage()
{
Yii::app()->request->redirect('redirect/to/this', true, 301);
}
首先我在 config/main 中尝试了 UrlManager。php
'oldPage'=>'newPage'
但它被重定向为 302
出于 SEO 目的,我想将旧版本网站中的一些 URL 重定向到 Yii2 中的新版本,例如。 /about-us.php
到 /about
。我该怎么做?
我不能使用.htaccess
,我不能使用urlManager
规则,因为需要设置HTTP响应状态301。
我在 bootstrap class 中尝试了以下操作,但即使代码执行了,我在转到旧 URL 时仍然只得到 404:
if (preg_match("|^/about.php|", $_SERVER['REQUEST_URI'])) {
Yii::$app->response->redirect('/about', 301)->send();
return;
}
刚刚自己找到了答案。我的 bootstrap 尝试还不错,我只需要添加 Yii::$app->end()
:
if (preg_match("|^/about-us.php|", $_SERVER['REQUEST_URI'])) {
Yii::$app->response->redirect('/about', 301)->send();
Yii::$app->end();
return;
}
有一种更简洁、更简单的方法:
class MyController extends Controller
{
public function beforeAction($action)
{
if (in_array($action->id, ['about-us'])) {
Yii::$app->response->redirect(Url::to(['about']), 301);
Yii::$app->end();
}
return parent::beforeAction($action);
}
}
希望对您有所帮助!
Yii 1.1
public function actionOldPage()
{
Yii::app()->request->redirect('redirect/to/this', true, 301);
}
首先我在 config/main 中尝试了 UrlManager。php
'oldPage'=>'newPage'
但它被重定向为 302