Rewriting URLs in PHP instead of server config

前端 未结 3 1511
南旧
南旧 2021-01-28 23:35

I\'m looking for a very lightweight routing framework (to go with php-skel).

The first thing I\'d like to investigate is specifying rewrite rules in a php file (\"not fo

3条回答
  •  清歌不尽
    2021-01-29 00:02

    PHP has a parse url function that could be easily used to route. You can then call explode() on the path portion that is returned to get an array of the url components.

提交回复
热议问题