可能かどうかはわかりませんが、必要なのはデフォルトをロードすることでcontroller
ありaction
、指定された場合controller
は から見つからなかったurl
ので、次の URL があるとします。
http://mywebsite.com/john
user
コントローラーとselected_user
アクションを呼び出す必要があります。
そして、もし私がURLを持っているならhttp://mywebsite.com/pages/profile
コントローラーとアクションの両方が指定され、検出されているため、pages
コントローラーとアクションを呼び出す必要があります。profile
それを行う方法はありますか?
私は使っているKohana 3.2
編集ここに私のhtaccessがあります:
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /ep/
# 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]
/ep
私のディレクトリhtdocs
も私の中に設定'base_url' => '/ep/',
しましbootstrap
た