Forum Moderators: phranque
one of my clients had an old page "topics.htm" which i've converted in the new site to "topics.asp". there are evidently lots of websites linked to the old page so how do i set up Windows server to redirect folks to the new page? if it were the other way around i'd just use a meta tag... i know how to do it in apache but does IIS offer the same type thing?
thanks!
IPfreely
<html>
<head>
<meta http-equiv="Refresh" content="0;/path/to/file/topics.asp" />
</head>
<body>
You might want to add a message and a standard link to the new page here for any user agent that isn't supporting redirects.
</body>
</html>
That's the simplest solution. You could also use ISAPI ReWrite to change the URL on the fly much like you can with Apache.
hth,
g.