我发送给codeigniter
这是我的控制器代码
class Pago extends CI_Controller {
function __construct() {
// Call the Model constructor
parent::__construct();
$this->load->helper('file');
}
function index() {
}
function response() {
//Respuesta por get al cliente
$post = $this->m_data->get_all_get();
if (!write_file('text.txt', json_encode($post))) {
//echo 'Unable to write the file';
} else {
//echo 'File written!';
}
}
}
由于某种原因,我得到404页面未找到您请求的页面未找到...有人知道吗?
答案 0 :(得分:0)
您的网址似乎有误。除非你做了一些适得其反的路由,否则你应该从控制器方法中删除.php扩展名。所以,这应该有效(至少没有404):
在此处了解CodeIgniter网址:http://ellislab.com/codeigniter/user-guide/general/urls.html