return Redirect::to('user/profile');
return Redirect::to('user/profile', 301);
return Redirect::to_secure('user/profile');
return Redirect::home();
return Redirect::back();
return Redirect::to_route('profile');
return Redirect::to_action('home@index');
return Redirect::to_route('profile', array($username));
return Redirect::to_action('user@profile', array($username));
return Redirect::to('profile')->with('status', 'Welcome Back!');
$status = Session::get('status');
return Response::download('file/path.jpg');
return Response::error('404');
return Response::error('500');