我正在尝试使用CodeIgniter REST_Controller。以下是我的代码。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once (APPPATH.'/libraries/REST_Controller.php');
class Test extends REST_Controller{
public function index_get() {
$this->response(array(''));
}
}
当我访问http://codeigniter/index.php/test
响应时
<xml><item/></xml>
显示在浏览器上。
但是当试图访问
http://codeigniter/index.php/test.xml
或者http://codeigniter/index.php/test.html
我收到 404 错误。
上述库的文档说,
http://example.com/books.json
http://example.com/books?format=json
与图书馆合作。
有人可以向我指出我做错了什么吗?