配置路由后 gii 找不到了 [ 2.0 版本 ]
没配置路由之前可以正常打开 http://127.0.0.1:8000/word/backend/web/index.php?r=gii
配置了路由之后 同样的路径 打不开了
其他 5 个回答
-
路由配置为path模式,试试:
http://127.0.0.1:8000/word/backend/web/index.php/gii
共 1 条回复word1018808441 回复于 2015-05-10 16:25 回复不行,直接报出 页面未找到
-
你的路由怎么设置的?代码贴出来。
共 1 条回复word1018808441 回复于 2015-05-10 16:30 回复/* 路由配置 */ 'urlManager'=>[ 'enablePrettyUrl' => true, 'showScriptName' => false, 'suffix' => '.html', 'rules' => [ '' => 'site/index', '<controller:\w+>' => '<controller>/index', '<controller:\w+>/<id:\d+>' => '<controller>/view', ], ],
__FresHmaN 觉得很赞 -
http://127.0.0.1:8000/word/backend/web/gii
使用
showScriptName
需要你的 服务器 开启了 相应模块,比如 apache 的<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... </Directory>
详见 http://www.yiiframework.com/doc-2.0/guide-start-installation.html
-
-
word1018808441 重庆
注册时间:2015-03-24
最后登录:2018-07-04
在线时长:629小时49分
最后登录:2018-07-04
在线时长:629小时49分
- 粉丝49
- 金钱7395
- 威望40
- 积分14085