Skip to content

Commit

Permalink
Update redirect.html
Browse files Browse the repository at this point in the history
Latest HTML 5, Meta tag and http updates
  • Loading branch information
ahmadhusein17 authored Mar 1, 2024
1 parent 2ed109d commit bca33c0
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions redirect.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
$(if http-status == 302)Hotspot redirect$(endif)
$(if http-header == "Location")$(link-redirect)$(endif)
<html>
$(if http-status == 302)
Hotspot redirect
$(endif)
$(if http-header == "Location")
<!DOCTYPE html>
<html lang="en">
<head>
<title>...</title>
<meta charset="UTF-8">
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0; url=$(link-redirect)">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
</head>
<body>
</body>
</html>
$(endif)

0 comments on commit bca33c0

Please sign in to comment.