Support the ongoing development of Laravel.io →
Session Requests Architecture
Last updated 2 years ago.
0

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.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.