Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 725 Bytes

File metadata and controls

23 lines (20 loc) · 725 Bytes

blog

一个简单的博客程序,底层MVC框架受网上的一篇博文启发(或者说基本完全是照抄)。 目前还有很多问题。 Basic:

  • 1.所有的请求都会经由根目录下的index.php来进行处理和转发(参见.htaccess)。
  • 2.system/lib/lib_router负责对请求的路由和参数设置。
  • 3.TBC...

Basic Operation :

1.文章

  • 增加:admin/index.php?controller=contents&action=write_post
  • 编辑:admin/index.php?controller=contents&action=write_post&cid=xxx
  • 列表页面: admin/index.php?controller=contents&action=show
2.TBC...