4

好吧,PHP 时代。

我的客户希望我使用 Yii2 作为他项目的框架。

我启动并运行它。没问题。我通过作曲家使用了高级模板。

将我的 Web 根目录设置为 /frontend/web 等。

现在,我想使用这种 url 格式

website.com/messages/ 或 website.com/messages/tom ...等。

现在的方式是设置显示website.com/index.php?r=messages/index ...

我找到了这个文档...

https://github.com/yiisoft/yii2/blob/master/docs/guide/url.md

但我似乎无法弄清楚。

这是我的步骤...

我将我的 apache 服务器配置为指向 /usr/www/payroll/frontend/web/

我在我的 web 文件夹中添加了一个包含此内容的 .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

我还按照说明添加了组件“urlManager”。它似乎捕获了请求并对其进行了修改。

'components'=>[
    'urlManager' => [
            'class' => 'yii\web\UrlManager',
            'enablePrettyUrl' => true,
            'showScriptName' => 'false'
        ],
],

例如,如果我键入 website.com,您可以看到它会将 /site/index 添加到 url。(如果没有激活 url 组件,它只会添加 /index.php?site/index)

因此,显然对 url 进行了修改(通过 UrlManager),但出现 404 错误

我在这里没有想法了。我是 Php、Apache 和 Yii2 的新手。任何帮助,非常感谢。

谢谢

4

5 回答 5

16

要在 Yii 2.0 上制作漂亮的 URL,你需要两件事:

1:编辑/frontend/config/main.php(或在您的情况下适当的主配置)并添加:

'components'=>[
        'urlManager' => [
                'class' => 'yii\web\UrlManager',
                'enablePrettyUrl' => true,
                'showScriptName' => false,
            ],
    ],

2:在您的 WEB ROOT文件夹中添加一个 .htaccess 文件。在 yii 2.0 高级版中,这不是项目根目录,而是: /frontend/web

.htaccess 示例:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 

RewriteRule . index.php
于 2014-07-16T10:36:42.650 回答
5

只需将 'showScriptName' => 'false' 更改为 'showScriptName' => false 即可

于 2014-08-17T15:16:29.397 回答
0

如果你想这样使用http://domain.com/controller_name/action_name,你只需要在你的配置文件中启用漂亮的 url:

'components'=>[
    'urlManager' => [
            'class' => 'yii\web\UrlManager',
            'enablePrettyUrl' => true,
            'showScriptName' => 'false'
        ],
],

现在您可以根据需要使用 url `website.com/messages/ 或 website.com/messages/tom。

如果你想在你的 url 中使用查询字符串,这就是它现在在 Yii 2 中的工作方式website.com/message?id=12

于 2014-04-10T16:53:43.850 回答
0

好的,这是解决方案。

在最新版本的 Apache(从 2.3.9 开始)中,AllowOverride 默认设置为 NONE。以前的版本将 AllowOverride 设置为 ALL。

Yii2 假设 AllowOverride 将被设置为 ALL。

如果你想在 Yii 论坛上阅读整个主题,这里是链接

http://www.yiiframework.com/forum/index.php/topic/53295-url-manager-for-seo-friendly-url-404-error-code/

感谢您的帮助和留言!

于 2014-04-11T21:25:40.167 回答
0

对于 Yii2 基础版,我只是将以下代码添加到 /myappfolder/config/web.php:

'urlManager' => [

'class' => 'yii\web\UrlManager',

'enablePrettyUrl' => 真,

'showScriptName'=>假,

]

此外,在 /myappfolder/web/ 中添加了 .htaccess :

重写引擎开启

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

重写规则。索引.php

这对我很有效。希望这可以帮助其他有同样问题的人。:)

于 2014-10-23T08:52:56.910 回答