Created
June 21, 2016 13:55
-
-
Save abdulhadad/82a3555adef6918a1abd3232a98cacdc to your computer and use it in GitHub Desktop.
redirect to different url folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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