Can't you just change the if statement from '===' to '!=' and then change the next line to include the "www."
untested,
App::before(function($request){
//Add the 'www.' to all requests
if (substr($request->header('host'), 0, 4) != 'www.') {
$request->headers->set('host', 'www.mydomain.com');
return Redirect::to($request->path());
}
});
I'm not sure on the Session::reflash(); question though, sorry.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community