thinkphp路由配置 php7.0,ThinkPHP 路由的使用(七)

在ThinkPHP中的路由主要的用途为:美化url路径,访问更安全;

可以制定路由规则,检验url请求。

一、路由配置

在ThinkPHP5.0中路由是默认开启的。相关的配置信息为//true代表开启路由模式,false代表关闭路由模式"url_route_on" => true,

//强制模式,true代表必须定义路由才能访问,false代表为非强制性"url_route_must" => false,

二、路由基础定义

路由文件默认引入think\Route模块。//get请求访问[http://www.xxx.com/index,](http://www.xxx.com/index,)除了get方法外,还有post,put,delete等方法 Route::get("/index", function(){    return "Hello World";

});

三、路由参数传递Route::get("/index/:id", function($id){    return $id;

});

四、控制器与路由//指index的get请求由application/index/controller/Index.php下的index方法处理

Route::get("/index", "index/Index/index");

作者:whiteMu

链接:https://www.jianshu.com/p/1ae1435a7c8a

你可能感兴趣的:(thinkphp路由配置,php7.0)