我是 Phalcon PHP 的新手。我不知道如何将 .html 添加到每个页面的 url 末尾。我已经查过文档。文档中没有与此相关的内容
谢谢,
我是 Phalcon PHP 的新手。我不知道如何将 .html 添加到每个页面的 url 末尾。我已经查过文档。文档中没有与此相关的内容
谢谢,
您可以自定义路由参数,例如:
$router->add(
"/documentation/{name}.{type:[a-z]+}\.html",
array(
"controller" => "documentation",
"action" => "show"
)
);
将使用参数路由 /documentation/color.doc.html
到 DocumentationController 中的 showAction$this->dispatcher->getParam("name") === "color"
和$this->dispatcher->getParam("type") === "doc"
有关更多信息,请阅读http://docs.phalconphp.com/en/latest/reference/routing.html中的文档