enter link description here - 是我安装Kohana的地方,但它出错了。
Kohana_HTTP_Exception [404]:在此服务器上找不到请求的网址。
在bootstrap中只写了一条路由(默认情况下):
Route :: set ('default', '(<controller> (/ <action> (/ <id>)))')-> defaults (array ( 'controller' => 'page','action' => 'index',));));
和写入的htacces(默认情况下也是如此)
我在本地机器上安装了应用程序 - 它工作正常,没有错误
请帮帮我
答案 0 :(得分:0)
“默认”路线的默认操作是“测试”。
我怎么知道? 我点击了错误页面上的一个“参数”链接。这是其中的一部分:
protected _route => object Route(5) {
protected _filters => array(0)
protected _uri => string(32) "(<controller>(/<action>(/<id>)))"
protected _regex => array(0)
protected _defaults => array(2) (
"controller" => string(7) "welcome"
"action" => string(4) "test"
)
protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD"
}
网址http://www.appliedmath.url.ph/welcome/index工作正常。
Kohana的默认错误页面在开发过程中非常有用。稍微玩一下:点击每个带下划线的文字。