5.0.0 - 严重 - 已关闭
版本:5.1
问题:
入口文件使用bind绑定模块后使用url生成的路径错误。
入口文件:
Container::get('app')->bind('web')->run()->send(); // 绑定了web模块
使用url('index/index')生成的路径为:/index.php/web/index/index.html
应当是没有web的,正确应该是/index.php/index/index.html
在5.0中生成的是/index.php/index/index.html