Skip to content

Instantly share code, notes, and snippets.

@amilabandara
Created July 20, 2016 11:31
Show Gist options
  • Save amilabandara/80194ed42a498948d8a62bca876aa078 to your computer and use it in GitHub Desktop.
Save amilabandara/80194ed42a498948d8a62bca876aa078 to your computer and use it in GitHub Desktop.
<?php
function redirect($url)
{
if (!headers_sent())
{
header('Location: '.$url);
exit;
}
else
{
echo '<script type="text/javascript">';
echo 'window.location.href="'.$url.'";';
echo '</script>';
echo '<noscript>';
echo '<meta http-equiv="refresh" content="0;url='.$url.'" />';
echo '</noscript>'; exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment