所有文件都在 localhost 中运行,我使用的是 XAMPP,但我能够以基于段的方法访问内容。
例如 http://localhost/auth/login
在配置中,我有
<?php
$config['base_url'] = 'http://localhost/';
$config['default_controller'] = 'main'; // Default controller to load
$config['error_controller'] = 'error'; // Controller used for errors (e.g. 404, 500 etc)
?>
在控制器中,我有
<?php
class Auth extends Controller {
function index()
{
// This is the default function (i.e. no function is set in the URL)
}
function login()
{
echo 'Hello World!';
}
}
?>
所以当我运行它时,它应该回显“hello world”但是,它说找不到对象!在此服务器上找不到请求的 URL。那是因为 localhost 不支持基于段的方法吗?