php如何实现下列url格式路由分发:
app目录
┡┈▓ App
┊ ┡┈▓ Config //配置文件目录
┊ ┡┈▓ Controller //控制器目录
┊ ┊ ┡┈▒ Index.php // 默认控制器
┊ ┟┈▓ Modle // 模型目录
┊ ┟┈▓ View // 视图目录
┊ ┟┈▓ Module //模块目录
┊ ┊ ┟┈▓ Admin
┊ ┊ ┊ ┡┈▓ Controller
┊ ┊ ┊ ┊ ┗┈▒ Index.php
┊ ┊ ┊ ┟┈▓ Modle
┊ ┊ ┊ ┗┈▓ View
┊ ┊ ┟┈▓ Member
┊ ┊ ┊ ┡┈▓ Controller
┊ ┊ ┊ ┊ ┗┈▒ Index.php
┊ ┊ ┊ ┟┈▓ Modle
┊ ┊ ┊ ┗┈▓ View
http://www.xxx.com/category/list/order/hot/
http://www.xxx.com/admin/category/edit/
http://www.xxx.com/member/user/id/3/http://www.xxx.com/index.php?c=category&a=list&order=hot
http://www.xxx.com/index.php?m=admin&c=category&a=edit
http://www.xxx.com/index.php?m=member&c=user&id=3
第1个url为前端访问,category为控制器,list为category类下的方法
第2个后台,admin为模块名,category为控制器,edit为category类下的方法
现在路由分发要实现以上2种形式的url的,怎样做?
php的路由必须和服务器的伪静态规则配合才能生效。
php里的路由的意思是
地址转发
,那么可以在生成URL的函数里传入各个参数生成一个新的的地址(而这个地址也就是伪静态地址)我自己写的路由,希望对你有帮助。http://mengkang.net/17.html
如果你懒得看,说下大体思路:
第一、服务器上apache或者nginx把伪静态rewrite到实际地址
第二、在PHP生成URL地址的时候做url的规则(而这个规则就路由文件)替换
第三、保证用户访问的一定是伪静态地址,当用户访问非伪静态地址的时候PHP端根据
$_SERVER['REQUEST_URI']
判断其是否非伪静态地址,如果不是就跳转到路由表规定的伪静态地址希望对楼主有帮助