在我的PHP Phalcon 3应用程序中,我有一个自定义路线:
$router->add("/{chapter}/{name}.{type:[a-z]+}", array(
"controller" => 'images',
"action" => 'getFile',
));
我使用PHP Builtin Server测试本地应用程序,其他路由正常工作。 如果我测试上面的路线: http://localhost:8000/XYZ/test.jpg 我总是得到404。 但是关于文档应该有用:https://docs.phalconphp.com/en/latest/reference/routing.html
你知道什么是错的吗?
这是我内置服务器的PHP的.htrouter:
<?php
if (!file_exists(__DIR__ . '/' . $_SERVER['REQUEST_URI'])) {
$_GET['_url'] = $_SERVER['REQUEST_URI'];
}
return false;