www.mysite.com/loginのコントローラーから実行した場合
return Redirect::to_action('profile');
ユーザーをwww.mysite.com/index.php/profileに移動します
Redirect :: to('profile');で試してみました。しかし、それも機能しません。Redirect :: home(); www.mysite.com/index.phpにアクセスすると、mod_rewriteが何らかの理由で機能していないと思われますが、RewriteEngineがオンになっています。
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
パブリックの下の.htaccessで。