我想在yii2的Cms页面中为url设置Dynamic Routing
。
当我添加Cms页面时,我将添加页面别名aboutus,faq,management等,这些别名将保存在db中。
当我给URL规则静态时,它会起作用,[检查下面的代码]
'urlManager' => [
'showScriptName' => false,
'enablePrettyUrl' => true,
//'enableStrictParsing' => true,
'rules'=>array(
'aboutus'=>'cms/index/1',
'faq'=>'cms/index/2',
'termacondition'=>'cms/index/3',
'management'=>'cms/index/4',
),
],
但我想动态添加网址规则。
我需要在yii2中的config / main.php URL规则中添加所有动态页面别名 请帮我。
答案 0 :(得分:9)
您可以在引导过程中编辑路由规则。
首先通过实现yii\base\BootstrapInterface
在您的组件目录下,创建一个名为DynaRoute.php的文件
<?php
namespace app\components;
use Yii;
use yii\base\BootstrapInterface;
use app\models\Cms; // assuming Cms is the Model class for table containing aliases
class DynaRoute implements BootstrapInterface
{
public function bootstrap($app)
{
$cmsModel = Cms::find()
->all(); // customize the query according to your need
routeArray = [];
foeach($cmsModel as $row) { // looping through each cms table row
$routeArray[$row->alias] = 'YOUR_ORIGINAL_URL'; // Adding rules to array on by one
}
$app->urlManager->addRules($routeArray);// Append new rules to original rules
}
}
现在在$config
数组中的配置文件(配置文件夹中的web.php)中,在bootstrap选项下添加上面的类
'bootstrap' => [
.... // other bootstrap options
'app\components\DynaRoute', // add this line
],
答案 1 :(得分:1)
除了ck_arjun的回答之外,您还可以将参数作为ID传递给路由。 例如,如果您想要重定向&#34; / aboutus &#34;到&#34; / site / page / id / 2 &#34;。
替换:
$routeArray[$row->alias] = 'YOUR_ORIGINAL_URL'
在
$routeArray[] = ['class' => 'yii\web\UrlRule', 'pattern' => $row->alias, 'route' => $row->route, 'defaults' => ['id' => $row->id]];