Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Created June 21, 2016 13:55
Show Gist options
  • Save abdulhadad/82a3555adef6918a1abd3232a98cacdc to your computer and use it in GitHub Desktop.
Save abdulhadad/82a3555adef6918a1abd3232a98cacdc to your computer and use it in GitHub Desktop.
redirect to different url folder
<!doctype html>
<html>
<head>
<title>Redirect</title>
<meta http-equiv="Refresh" content="0; url=/selter">
<!-- If the meta tag doesn't work, try JavaScript to redirect. -->
<script type="text/javascript">
window.location.href = "/selter"
</script>
</head>
<body>
<!-- If JavaScript doesn't work, give a link to click on to redirect. -->
<p>If you are not redirected automatically, click <a href='/selter'>here</a>.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment