Skip to content

Instantly share code, notes, and snippets.

@icetee
Created June 29, 2017 13:35
Show Gist options
  • Save icetee/e68de06ab7a1d1f5ef0ce74c97399c15 to your computer and use it in GitHub Desktop.
Save icetee/e68de06ab7a1d1f5ef0ce74c97399c15 to your computer and use it in GitHub Desktop.
WordPress HTTPS too many redirection fix
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO']) {
$_SERVER['HTTPS'] = 'on';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment