>php教程 >php手册 >thinkphp路由规则表达式

thinkphp路由规则表达式

WBOY
WBOY원래의
2016-06-07 11:39:191803검색

复制代码
那么如果访问:

thinkphp路由规则表达式原理怎么替换的?
然后,我们访问:

http://serverName/index.php/new/8

复制代码
会匹配到第一个路由规则,实际执行的效果等效于访问:

http://serverName/index.php/News/read/id/8

复制代码
当访问:

http://serverName/index.php/new/hello

复制代码
会匹配到第二个路由规则,实际执行的效果等效于访问:

http://serverName/index.php/News/read/name/hello

复制代码
那么如果访问:

http://serverName/index.php/new/2012/03

复制代码
是否会匹配第三个路由规则呢?我们期望的实际执行的效果能够等效于访问:

http://serverName/index.php/News/archive/year/2012/month/03

AD:真正免费,域名+虚机+企业邮箱=0元

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.