// 是否强制使用路由
'url_route_must' => true,
// 合并路由规则
'route_rule_merge' => false,
// 路由是否完全匹配
'route_complete_match' => true,
// 使用注解路由
'route_annotation' => false,route.phpRoute::get('admin', 'admin/index/index');
Route::rule('admin/login', 'admin/index/login','get|post');admin/login这个正常,但是在浏览器访问thinkphp.site/admin的时候。他没有去admin/index/index。显示是public下面的admin的目录,我用来放一些静态文件的。。。图片传不上去。显示的大概就是下面的东西
Index of /admin
[ICO] Name Last modified Size Desc
[PARENTDIR] Parent Directory -
[DIR] css/ 2018-07-25 16:09 -
[DIR] img/ 2018-07-25 16:24 -
[DIR] js/ 2018-07-25 16:17 -
Apache/2.4.23 (Win64) PHP/7.0.10 Server at thinkphp.site Port 80
最佳答案