redirect page?
- Started
- Last post
- 6 Responses
- werdna
just wondering if anyone can give me the code to redirect a web page to another page on the site? I need a sites main domain to quickly redirect to another page. thanks in advance.
- SP™0
META HTTP-EQUIV="Refresh" CONTENT="2; URL=http://www.talonfinancial.co...
in tags
- werdna0
thanks heaps for that!!
- biri0
If your server supports asp pages then you can redirect visitors in a invisible manner using a script like this:
0 Then
Response.Redirect("/siteone/page...
End If %>
- biri0
I'll try again:
dim serverName
serverName = Request.ServerVariables("SERVER...If InStr( UCase(Request.ServerVariables("S... UCase("siteone.com") ) > 0 Then
Response.Redirect("/siteone/page...
End If
- ribit0
You should use location replace instead of meta refresh (prevents the Back button taking them back to the landing URL), then leave the meta refresh as a backup, then a link if they don't work...