您好,所以我已经开始使用顿悟微框架并且遇到了简单的问题。我遵循了文档,但我无法找到工作路线。这是我的代码:
include_once 'src/Epi.php';
Epi::init('route');
getRoute()->get('/', 'home');
getRoute()->get('/contact', 'contactUs');
getRoute()->run();
function home() {
echo 'You are at the home page';
}
function contactUs() {
echo 'Send us an email at <a href="mailto:foo@bar.com">foo@bar.com</a>';
}
并在终端上运行它php -S localhost:8080
。每当我输入localhost:8080
时,它就会回响'You are at the home page'
。但是当我这样做时,localhost:8080/contact
它仍然会回响'You are at the home page'
。我已经关注了文档中的所有内容。难道我做错了什么?