yii2 urlManager enablePrettyUrl无效

时间:2015-01-07 19:50:34

标签: .htaccess yii2 yii-url-manager

在Yii2中,我无法启用漂亮的网址。

我的配置:

    'urlManager' => [
        'enablePrettyUrl' => true,
        'showScriptName' => false,
    ],

我的.htaccess:

RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php

我的剧本:

echo 'enablePrettyUrl: ';
echo Yii::$app->urlManager->enablePrettyUrl ? 'true ' : 'false';

echo '<br>';
echo 'enableStrictParsing: ';
echo Yii::$app->urlManager->enableStrictParsing ? 'true ' : 'false';

echo '<br>';
echo 'showScriptName: ';
echo Yii::$app->urlManager->showScriptName ? 'true ' : 'false';

echo Url::to(['/book/read', 't' => 'booktitle', 'c'=>'chaptertitle']);

脚本的输出:

enablePrettyUrl: true
enableStrictParsing: false
showScriptName: false

/book/read?t=booktitle&c=chaptertitle
显然,我没有得到漂亮的Url。 为什么不呢?

  • 我们知道enablePrettyUrl=== true
  • 我不相信我的.htaccess
  • 有什么问题

2 个答案:

答案 0 :(得分:7)

你得到漂亮的网址。这是一个漂亮的网址

/book/read?t=booktitle&c=chaptertitle

丑陋的网址

index.php?r=book/read&t=booktitle&c=chaptertitle

所以一切都在yii2中按预期工作。现在你可能想让它们更漂亮,在这种情况下你可以添加到你的规则部分,如

'urlManager' => [
    'class' => 'yii\web\UrlManager',
    'enablePrettyUrl' => true,
    'showScriptName' => false,
    'rules' => [
        'book/read/<t>/<c>' => 'book/read',
    ]

这将生成一个看起来像

的链接
book/read/booktitle/chaptertitle

根据您的需要进行更改。无需更改控制器中的任何内容,它仍将接收t和c参数。

答案 1 :(得分:1)

你已经获得了漂亮的网址

/book/read?t=booktitle&c=chaptertitle

是一个很棒的网址。你也可以像这样点击它

/book/read/t/booktitle/c/chaptertitle

如果你想在浏览器中使用它会导致相同的问题,如果你在网址中使用?而感到困惑。