Kohana 404错误:找不到请求的URL

时间:2014-01-05 15:11:41

标签: php url http-status-code-404 kohana

。 大家好,

我正在为一个学校项目的网站工作。 最近我在Biberbit.com上购买了自己的网站空间,想上传我的网站。 当我上传它时,我在屏幕上看到以下错误:

Kohana_HTTP_Exception [ 404 ]: The requested URL / was not found on this server.

我的项目使用Kohana框架版本3.3.1 我已经有了.htaccess文件,文件名/目录名都是小写的。 我使用默认路线:

Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
    'controller' => 'welcome',
    'action'     => 'index',
));

最初我以为它可能是bootstrap.php文件中的default_url所以我已经将这些行更改为:

Kohana::init(array(
    'base_url'   => '/',
    'index_file' => FALSE,
));

我在多个网站上寻找解决方案,找不到适合我的解决方案。 谁能想到我可能会遗漏的东西? 我也在使用URL::site()作为我的链接,所以我认为这不会导致它。

您可以在http://www.biberbit.com

查看错误和/或网站

修改 .htaccess按要求

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /

# Protect hidden files from being viewed
<Files .*>
    Order Deny,Allow
    Deny From All
</Files>

# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]

2 个答案:

答案 0 :(得分:0)

base_url设置错误,应为空(因为您在网络根目录下)。另外,根据您是否拥有Linux,文件名不能全部小写但是您在代码中使用它们。对于默认控制器,Welcome.php而不是welcome.php

答案 1 :(得分:0)

当Kohana找不到相应的操作方法来处理请求时,通常会抛出

Kohana_HTTP_Exception [ 404 ]: The requested URL / was not found on this server.异常。

确保您拥有Controller_Welcome类和action_index方法。

此外,您可以检查您的异常回溯并找到究竟导致异常的原因。您很可能会在SYSPATH/classes/Kohana/Controller.php块中的if(!method_exists(...))文件中看到Exeption。