Can anybody help me redirect from [mysite...] to [mysite?...] I'm using iis 6.0 and html pages. I've tried placing a response redirect asp page as default document but that didn't seem to work. Thanks
If (UCase(Request.ServerVariables("HTTPS")) <> "ON") Then Response.Redirect("https://mysite.com") End If
john_k
8:09 pm on Mar 19, 2005 (gmt 0)
If the requests are going directly to the html pages (and not to the asp pages or default page) then of course the asp code never has a chance to execute.
In that case, you need to use the meta-refresh as posted by cmatcme. Just be sure that the location for the refresh is pointing to a different file name.