index.html: preserve URL # on redirects

dev
Michael Ball 2015-10-09 12:27:57 -07:00
rodzic 72bf4cfb8c
commit 5b7b51078e
1 zmienionych plików z 13 dodań i 3 usunięć

Wyświetl plik

@ -1,7 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta HTTP-EQUIV="REFRESH" content="0.1; url=snap.html">
</head>
<head>
<script type="text/javascript">
if (window.location) {
window.location = 'snap.html' + window.location.hash;
}
</script>
<meta HTTP-EQUIV="REFRESH" content="0.1; url=snap.html">
<title>Redirecting to Snap!</title>
</head>
<body>
<p>If you are no automatically redirected to Snap<i>!</i>,
<a href="snap.html">please click here.</a> </p>
</body>
</html>