您好我已经开始使用顿悟微框架并且遇到了简单的问题。我跟着docs,但我找不到路线。这是我的代码:
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'
。我已经关注了文档中的所有内容。我做错了吗?