hi ,新手问两个问题:
目录结构:www/ci/..,访问是http://localhost/ci/index.php/**.
1)ci目录下的文件:比如www/ci/application/abc.php,为什么不能通过localhost/ci/application/abc.php访问,提示404,为什么,看网上说有htaccess这个文件,可是在ci目录下没有发现这个文件。不明白为什么不能访问了。
2)想在controller/blog.php里面include abc.php(以后可能是定期生成的一个数据文件),怎么写。
blog.php:
class Blog extends CI_Controller {
function index() { $data["title"] = "hello home"; $data["header"] = "hello header"; $data["body"] = "hello body";
//这里想include abc.php。里面有一些数据,怎么做? $this->load->view("home_view",$data); } }
|