我是这种功能的新手。我在几个框架中看到了这一点,例如codeigniter,wordpress等。这是重写URL的能力。
假设我有一个像
这样的文件系统
- 的htdocs
- 页
- home.php
- about.php
- services.php
- products.php
- contact.php
- 等......
- 芯
- class_database.php
- class_filesystem.php
- class_account_manager.php
- 等......
- 的index.php
- 的config.php
- 等......
我该怎么做,以便我可以像这样重写网址请求。
例如,用户请求主页,而不是通过URL访问主页:example.com/pages/home.php,他只是输入example.com/home?
为了移动性,有没有办法只使用PHP代码?
提前感谢您的帮助。