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は動作しません。Apache による 404 エラー ページ、デフォルトの 404 エラー ページが表示されます。なにが問題ですか?

4

1 に答える 1