顿悟框架重定向到主页

时间:2015-06-12 04:23:06

标签: php epiphany

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

0 个答案:

没有答案