http://example.com/clientsにアクセスすると、Laravel の応答は 404 エラーになりますが、http://example.com/clients/indexにアクセスすると、Laravel は適切なビューをレンダリングして index アクションを実行します。
私の .htaccess ファイル:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
私のコントローラー:
<?php
class Clients_Controller extends Base_Controller
{
public function action_index()
{
return View::make('clients.clients');
}
}
マイ Routes.php
Route::controller(Controller::detect(),'home.index');