Skip to content

Instantly share code, notes, and snippets.

@waltzaround
Last active January 26, 2016 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waltzaround/924c41c0d409564aaa4f to your computer and use it in GitHub Desktop.
Save waltzaround/924c41c0d409564aaa4f to your computer and use it in GitHub Desktop.

#CTEC AUT Redirect guide Guide for redirecting AUT Creative Technologies profile link to your own website

  1. Get an FTP Client like Cyberduck
  2. Log into the Creative tech server while connected to AUT wifi with the following settings:
  3. Connection Type: SFTP
  4. Address: creativetechnologies.aut.ac.nz
  5. Port: 22
  6. Username: autuni\abc1234 (or whatever your username is)
  7. Password: your uni password
  8. When you login, find your way to the www folder and look for an index.html file. If you can't find one, create it.
  9. replace everything in the HTML file with the code below, and replace the link with your own:
<!DOCTYPE HTML>
<html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="refresh" content="1;url=http://yourwebsitehere.com">
        <script type="text/javascript">
            window.location.href = "http://yourwebsitehere.com"
        </script>
        <title>Page Redirection</title>
    </head>
    <body>
        <!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
        If you are not redirected automatically, follow the <a href='http://yourwebsite.com'>link to example</a>
    </body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment