top of page
Auto Redirect From Departmental Web Server
Steps to set redirection from Departmental Web Server supported by ITS to a new destination.
-
Create a html file named "index.html"
-
Copy the following HTML code and update it with the URL to your new destination. Paste the code under your departmental Web Server.
​
<!DOCTYPE html>
<html>
<head>
<!-- HTML meta refresh URL redirection -->
<meta http-equiv="refresh"
content="0; url=https://xxxx.hku.hk">
</head>
<body>
<p>The page has moved to:
<a href=”https://xxxx.hku.hk”>this page</a></p>
</body>
</html>
bottom of page