|
我在controllers 下建立一个 error.php
里面有 class Error extends Controller {
function __construct()
{
parent::Controller();
}
function index(){
}
function windowshow(){
}
我在本地测试正都是正常的,传上服务器就出如何问题,请高手帮忙解决呀。
我访问 http://www.域名.com/error,此时会自动找到 index并实现输出
如果访问 http://www.域名.com/error/index 或者访问 error/windowshow 的话,有如下提示
Not Found
The requested URL /error/index was not found on this server.
--------------------------------------------------------------------------------
Apache/2.2.3 (CentOS) Server at www.tujin.com Port 80 |
|