%@ Page Language="VB" ContentType="text/html" ResponseEncoding="utf-8" %>
<%
Dim host
host = request.ServerVariables("HTTP_HOST")
' Permanent redirection
If host = "http://neurosurgery.ucsf.edu/index.php/clinical_trials.html" Then
Response.Status = "301 Moved Permanently"
Response.AddHeader ("Location", "http://neurosurgery.ucsf.edu/index.php/clinical_trials.html")
Response.End
Else
Response.Redirect("index.html")
End If
%>