Bei der Verwendung von Website-Software habe ich festgestellt, dass die index.php im Stammverzeichnis mancher Software mehrere verschiedene Webseiten generieren kann, wie zum Beispiel:
localhost/index.php/blog; localhost/index.php/contact.
Wie wird diese Routing-Methode implementiert? Danke!
对于
localhost/index.php
,访问的文件地址是localhost/index.php
没错,然后/blog
,可以理解成参数,至于怎么获取呢 ?查看 $_SERVER 的信息吧。
比如说,'/blog' 参数对应的是 Blog 控制器的 index 方法,然后可以通过调用 (new Blog())->index() 实现相应的逻辑。
在往下说,'/blog/add' 参数,对应 Blog 控制器的 add 方法,然后可以通过调用 (new Blog())->index() 实现相应的逻辑。
对于服务器来说,www.xxx.com/index.php/test只能识别到www.xxx.com/index.php,这个是在Nginx或者Apche里面配置的,例如下面一段配置:
至于后面的信息test,是PHP代码自己去识别的,其实就是一个参数,(至于PHP代码怎么接收到这个参数,你就得去看看Nginx或者Apache是怎么和PHP交互的了),当这个参数"test"拿到以后,你就可以根据这个参数做你想做的事,不同的参数,你就可以做不同的事,提供多样的功能,这也是我对路由的理解。
后面的参数格式叫 PATH_INFO, apache默认提示, nginx要自己正则匹配一下.
这个就和index.php?url=/path/to/xxx 一样. 只是用一个参数来表示项目的路由的.