urlManager在Yii 2.0中不起作用

编程入门 行业动态 更新时间:2024-10-27 05:22:11
本文介绍了urlManager在Yii 2.0中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试学习yii 2.0,目前我正在使用yii 2.0的basic版本.第一步是配置URL.因此,按照指南,我启用了mod_rewrite,使用phpinfo()进行了检查,然后在config/web.php的components中添加了以下几行:

I'm trying to learn yii 2.0 and currently i'm using basic version of yii 2.0. First step was to configure urls. So as per the guide, i enabled mod_rewrite, checked it using phpinfo() and then added following lines in the components of config/web.php:

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

现在我希望localhost/basic/web/index.php?r=site/test用作localhost/basic/web/index.php/site/test

但是,我将我带到了SiteController的index方法.实际上,它会将所有网址带到index方法. index.php之后的部分无关紧要.甚至错误的controllerId/actionId也可以.可能是什么问题?

But it takes me to the index method of SiteController. Actually it's taking all urls to index method. Part after index.php doesn't matters. Even a wrong controllerId/actionId works. What could be the problem?

这是我的config/web.php

<?php $params = require(__DIR__ . '/params.php'); $config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation 'cookieValidationKey' => 'tSjCFs0He7lBeZN34fLzFij2xUUE4NwK', ], 'cache' => [ 'class' => 'yii\caching\FileCache', ], 'user' => [ 'identityClass' => 'app\models\User', 'enableAutoLogin' => true, ], 'errorHandler' => [ 'errorAction' => 'site/error', ], 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => true, ], 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], 'db' => require(__DIR__ . '/db.php'), ‘urlManager’ => [ 'class' => 'yii\web\UrlManager', 'enablePrettyUrl' => true, 'showScriptName' => false, ], ], 'params' => $params, ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = 'yii\debug\Module'; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = 'yii\gii\Module'; } return $config;

推荐答案

您还需要配置apache.作为 Yii的官方指南说:

You need to configure apache as well. As Yii's official guide says:

推荐的Apache配置

# Set document root to be "basic/web" DocumentRoot "path/to/basic/web" <Directory "path/to/basic/web"> # use mod_rewrite for pretty URL support RewriteEngine on # If a directory or a file exists, use the request directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise forward the request to index.php RewriteRule . index.php # ...other settings...

您还可以使用以下内容在Web目录中创建.htaccess文件:

You can also create a .htaccess file into your web directory with the following content:

RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php

另一方面,您必须将`更改为',如下所示:

On the other hand, you must change ` to ' like below:

'urlManager' => [ //you wrote `urlManager` which must change to 'urlManager' 'class' => 'yii\web\UrlManager', 'enablePrettyUrl' => true, 'showScriptName' => false, ],

更新

推荐的Nginx配置

server { charset utf-8; client_max_body_size 128M; listen 80; ## listen for ipv4 #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 server_name mysite.local; root /path/to/basic/web; index index.php; access_log /path/to/basic/log/access.log main; error_log /path/to/basic/log/error.log; location / { # Redirect everything that isn't a real file to index.php try_files $uri $uri/ /index.php?$args; } # uncomment to avoid processing of calls to non-existing static files by Yii #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ { # try_files $uri =404; #} #error_page 404 /404.html; location ~ \.php$ { include fastcgi.conf; fastcgi_pass 127.0.0.1:9000; #fastcgi_pass unix:/var/run/php5-fpm.sock; try_files $uri =404; } location ~ /\.(ht|svn|git) { deny all; } }

推荐的Nginx配置

更多推荐

urlManager在Yii 2.0中不起作用

本文发布于:2023-11-13 12:20:23,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1584344.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:中不   urlManager   Yii

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!