Skip to content

Instantly share code, notes, and snippets.

@mmccall10
Created July 9, 2014 03:56
Show Gist options
  • Save mmccall10/f8af92b92412ae66f7a6 to your computer and use it in GitHub Desktop.
Save mmccall10/f8af92b92412ae66f7a6 to your computer and use it in GitHub Desktop.
<?php
App::before(function($request)
{
if(!Request::secure())
{
$url = Request::url();
$url = str_replace('http', 'https', $url);
return Redirect::to($url);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment