关于thinkphp配置路由无效果的解决方案

1、打开“config.php”,找到'url_route_on',改为true

2、打开“route.php”,例如:“www.hyxx.com/Index.php/api/user/index/id/2” 改为“api.hyxx.com/user/2”(api.hyxx.com为之前设置的二级域名)。那么就在return中写成     '/user/[:index]' => ['/Index.php/api/user/index/id/2',['method'=>'get']],

例如:“www.hyxx.com/Index.php/api”改为“api.hyxx.com”.。就写成    ' '=>['/index.php/api',['method'=>'get']],  

里面的请求方式,自己去试探。

你可能感兴趣的:(关于thinkphp配置路由无效果的解决方案)