|
比如http://localhost/news
加载的是system\application\controllers\news\home.php
比如http://localhost/news/add
加载的是system\application\controllers\news\add.php
比如http://localhost/news/edit
加载的是system\application\controllers\news\eidt.php
一般我是这么做,就是将功能分文件来写
当然也就这么做的
比如http://localhost/news
加载的是system\application\controllers\news.php
比如http://localhost/news/add
加载的是system\application\controllers\news.php中的add方法
比如http://localhost/news/edit
加载的是system\application\controllers\news.php中的eidt方法
不知道大家一般怎么部署文件呢,我感觉第一种更容易理清思路,便于开发和维护。 |
|