我测试了我的第一个代码但是有错误消息:
遇到错误
无法加载请求的文件:first.php
<?php
class Ow extends CI_Controller {
public function index($a){
$this->load->view('first');
}
}
?>
答案 0 :(得分:0)
在views
文件夹(应用程序/视图)上。添加first.php
文件,因为它不存在,如错误消息中所述
示例文件夹结构:
应用程序名称
答案 1 :(得分:0)
在根目录中使用此.htaccess文件
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]