PHP:Codeigniter 样式 url:s?
我正在寻找一些有关如何为我自己的 PHP Pet 应用程序创建 URL 重写 CodeIgniter 功能的帮助。 我知道 .htaccess
文件发挥了一部分作用,但是根据 URI 处理 URL 分割和控制器/方法调用的 PHP 文件看起来如何呢?
非常感谢您的帮助!
I am looking for some help on how to create the sort of URL-rewriting CodeIgniter features for my own PHP pet application.
I know that the .htaccess
-file does one part of the magic, but how does a PHP file looks that handles the URL splitting and calling of controllers/methods accordingly to the URI?
Thanks a lot for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 phpro.org 上的一个很好的教程:
模型视图控制器 MVC
您需要查看
router
类。如果您阅读整个教程,事情就会变得更加清楚。Here is a good tutorial on phpro.org:
Model View Controller MVC
You need to have a look at
router
class. Things will be much clear if you read entire tutorial.在 MicroMVC 中,我这样做是为了获取页面的 URL:
您还可以查看 gluephp 项目。
In MicroMVC I do this to get the URL of the page:
You can also look at the gluephp project.