-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for redirects in meta http-equiv tag
- Loading branch information
Showing
5 changed files
with
207 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Test website</title> | ||
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png"> | ||
<link rel="manifest" href="./icons/site.webmanifest"> | ||
<link rel="shortcut icon" href="./icons/favicon.ico"> | ||
<meta http-equiv="refresh" content="3;url=https://standard_netloc/index.html" /> | ||
</head> | ||
|
||
<body> | ||
|
||
<h2>Redirect with http-equiv meta directive</h2> | ||
|
||
<p>You should be redirected to home page in 3 seconds</p> | ||
|
||
</body> | ||
|
||
</html> |
This file contains 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
This file contains 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
This file contains 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