|
我刚接触ci但我新建一个hello.php想输出但提示404 page not found
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Hello extends CI_Controller
{
function index()
{
echo 'wangpeng';}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
?>
是不是配置的问题 我用的是wamp集成环境
|
|