-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
215 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
|
||
index.html Provides a generic homepage / index page for a smooth entry, in case the suer only typed the short form of the URL. | ||
index.html Provides a generic redirect. | ||
error404.php Provides an error page which also mentions the URL which was not found. This is needed for some forms of debugging. | ||
|
||
|
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 |
---|---|---|
@@ -1,20 +1,13 @@ | ||
<html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<style> | ||
* {font-family:sans-serif;font-size:18pt;} | ||
a { | ||
text-decoration: none; | ||
} | ||
</style> | ||
|
||
<meta charset="UTF-8"> | ||
<meta http-equiv="refresh" content="0;url=wiki-dir/index.php"> | ||
<title>Redirecting...</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<ul> | ||
<li><a href="http://localhost:8080/wiki-dir/">wiki-dir via HTTP on http://localhost:8080/wiki-dir</a></li> | ||
<li><a href="https://localhost:4443/wiki-dir/">wiki-dir via HTTP<b style="color:red;">S</b> on https://localhost:4443/wiki-dir</a></li> | ||
</ul> | ||
|
||
<script> | ||
window.location.href = "wiki-dir/index.php"; | ||
</script> | ||
</body> | ||
</html> |