Redirect on 404

WebGuy

Perch
We just implemented a new website with a completely new file and navigation structure. How can I redirect everyone who gets a "404 Page not found" to our index page?

I tried using the custom error pages, but I must not be doing it correctly.

Thanks for any help you can offer.
 
you need ot set the 404 one within the control panel and use the url i thikn its not the file one.

and set it to /index.asp or what ever, then it should work, what happens at present
 
I tried that, but the page doesn't display properly. All the graphics don't show up, etc. It behaves as though the index page is in the wrong directory.
 
Ya thanks, I figured that out.

I created a simple ASP script that redirects them.

<%
site = "http://www.yourwebsite.com"
Response.Redirect site
Response.End
%>
 
Back
Top