+ Post New Thread
Results 1 to 6 of 6
Web Development Thread, Redirect Website url to VLE in Coding and Web Development; Hi there, I'm after some advice on how best to redirect our school website url to our VLE. Currently our ...
  1. #1
    HCC
    HCC is offline
    HCC's Avatar
    Join Date
    Jan 2009
    Location
    East Sussex
    Posts
    62
    Thank Post
    6
    Thanked 0 Times in 0 Posts
    Rep Power
    7

    Redirect Website url to VLE

    Hi there,

    I'm after some advice on how best to redirect our school website url to our VLE.

    Currently our website has a temporary page which redirects to our uniservity VLE after 30 secs. I would like it so it redirects instantly. It would also be great to retain the Website address as it's better than the VLE one
    I think the server is IIS, as I tried a .htaccess file and it didn't work. I'm aware I could use a meta-refresh or a frames page, or reduce the countdown to redirect but I've heard all of these are perceived badly by search engines.

    The website is hosted by RM and I could just send them a change request to 301 redirect to the school-portal address, but I often have to use the webspace to prove we own the domain for certificate requests etc. and this wouldn't keep the sch domain visible.

    Is there a way to achieve this?

    Thanks,

  2. #2
    HCC
    HCC is offline
    HCC's Avatar
    Join Date
    Jan 2009
    Location
    East Sussex
    Posts
    62
    Thank Post
    6
    Thanked 0 Times in 0 Posts
    Rep Power
    7
    Opps forgot to add url adresses

    Our website URL is Home Page and our VLE address is Hailsham Community College ***


    Thanks,

  3. #3
    Edu-IT's Avatar
    Join Date
    Nov 2007
    Posts
    5,153
    Thank Post
    289
    Thanked 385 Times in 357 Posts
    Rep Power
    98
    If you don't want to use a 301 then I think the only other option is to use a standard redirect in a HTML file.

    The code is:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>Hailsham Community College - Redirect</title>
    <meta http-equiv="REFRESH" content="0;url=http://www.school-portal.co.uk/GroupHomepage.asp?GroupID=273775"></HEAD>
    <BODY>
    </BODY>
    </HTML>
    Last edited by Edu-IT; 5th July 2009 at 03:14 PM.

  4. Thanks to Edu-IT from:

    HCC (5th July 2009)

  5. #4

    EduTech's Avatar
    Join Date
    Aug 2007
    Location
    Birmingham
    Posts
    4,535
    Blog Entries
    3
    Thank Post
    127
    Thanked 732 Times in 573 Posts
    Rep Power
    188
    dont matter was a bit slow on submitting that, EduIT beat me lol

    but tbh, if you have access to the domain account, you could just setup a forwarder for that domain to point to Hailsham Community College **

    James.

  6. #5
    penfold_99's Avatar
    Join Date
    Feb 2008
    Location
    East Sussex
    Posts
    660
    Thank Post
    26
    Thanked 102 Times in 68 Posts
    Rep Power
    46
    Quote Originally Posted by HCC View Post
    Hi there,

    I'm after some advice on how best to redirect our school website url to our VLE.

    Currently our website has a temporary page which redirects to our uniservity VLE after 30 secs. I would like it so it redirects instantly. It would also be great to retain the Website address as it's better than the VLE one
    I think the server is IIS, as I tried a .htaccess file and it didn't work. I'm aware I could use a meta-refresh or a frames page, or reduce the countdown to redirect but I've heard all of these are perceived badly by search engines.

    The website is hosted by RM and I could just send them a change request to 301 redirect to the school-portal address, but I often have to use the webspace to prove we own the domain for certificate requests etc. and this wouldn't keep the sch domain visible.

    Is there a way to achieve this?

    Thanks,
    As the question has been answered. i thought i would ask how you getting on with uniservity?

  7. #6
    torry_loon's Avatar
    Join Date
    Apr 2008
    Location
    Aberdeen
    Posts
    31
    Thank Post
    4
    Thanked 8 Times in 7 Posts
    Rep Power
    9
    You can redirect your page with the following piece of code:

    Code:
    <%@ Language=VBScript %>
    <%
    Response.Status="301 Moved Permanently"
    Response.AddHeader "Location", "http://www.school-portal.co.uk/Grouphomepage.asp?GroupId=273775"
    %>

SHARE:
+ Post New Thread

Similar Threads

  1. VLE, Website & Curriculum ICT Support-Bolton
    By beeswax in forum Educational IT Jobs
    Replies: 15
    Last Post: 14th May 2009, 08:22 PM
  2. redirect to forensicsoftware.co.uk
    By zed in forum Internet Related/Filtering/Firewall
    Replies: 3
    Last Post: 1st April 2009, 03:21 PM
  3. free website url filtering/recording
    By driftaguy in forum Educational Software
    Replies: 1
    Last Post: 18th August 2008, 09:25 AM
  4. VLE/website consolidation
    By Oops_my_bad in forum Web Development
    Replies: 1
    Last Post: 28th December 2007, 11:23 PM
  5. Replies: 7
    Last Post: 9th November 2006, 12:32 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •