0

我有 bootstrap.php:

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

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

Route::set('dodaj-obiekt', 'dodaj-obiekt(/<action>(/<id>))')
    ->defaults(array(
        'controller' => 'object',
        'action'     => 'addObject',
    ));

和.htaccess:

RewriteEngine On

RewriteBase /wypoczynek/

<Files .*>
    Order Deny,Allow
    Deny From All
</Files>

RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule .* index.php/$0 [PT]

链接:http ://domain.pl/wypoczynek效果很好,但http://domain.pl/wypoczynek/dodaj-obiekt不起作用。我看到 404 错误页面,Apache 的默认 404 错误页面。怎么了?

4

1 回答 1

1

更通用的路线应该放在最后。它们按照它们在声明中匹配的顺序匹配,所以把你的默认路由放在最后。

于 2013-04-27T20:59:50.473 回答