thinkphp5.1 http://172.98.6.101/api/gameintroduces/gameintroduces/games_list简短到http://172.98.6.101/api/gameintroduces/games_list的路由怎么写
时间: 2023-10-05 17:07:11 浏览: 109
thinkphp的URL路由规则与配置实例
5星 · 资源好评率100%
在thinkphp5.1中,可以使用Route::rule()方法来设置路由规则。
如果你要将http://172.98.6.101/api/gameintroduces/gameintroduces/games_list简短到http://172.98.6.101/api/gameintroduces/games_list,可以使用以下代码:
```
use think\facade\Route;
Route::rule('api/gameintroduces/games_list', 'api/gameintroduces/gameintroduces/games_list');
```
这样,当你访问http://172.98.6.101/api/gameintroduces/games_list时,实际上会访问http://172.98.6.101/api/gameintroduces/gameintroduces/games_list。
阅读全文