S
Study Abroad Guru
I would like to set up an .htaccess file or something similar in the MS
Server environment to manage 301 redirects.
Server environment to manage 301 redirects.
Jon Spivey said:Hi,
There's no htaccess on IIS, you'd normally do this with some code on the
page for example in asp
<%
response.status="301 Moved Permanently"
response.addheader "Location", "http://newdomain/newpage.asp"
%>
Tina Clarke said:Does the page that code is on have to be a .asp extenstion?