我正在使用灯泡服务器并试图编写一个名为send.php的控制器函数,如下所示:
varchar(max)
视图文件夹中的test.php具有以下内容:
defined('BASEPATH') OR exit('No direct script access allowed');
class Send extends CI_Controller {
public function index()
{
$this->load->view('test');
}
}
这是我的项目文件夹的位置: $ config [' base_url'] =' http://localhost/demos/CodeIgniter/';
我的.htaccess文件的内容
echo 'Hello';
当我尝试拨打http://localhost/demos/CodeIgniter/send时,我收到以下错误:
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
RewriteEngine on
RewriteBase /demos/CodeIgniter/
RewriteRule ^(.*)$ index.php [L]
请帮助我。 提前谢谢