|
To perform a 301 redirect, you need to do the following:
- Create a file on the server with the title of the page name your redirecting from. IE: oldpage.asp
- Open the file in a text editor or asp editor program. Notepad will do if you do not have an ASP editor or have access to one.
- Insert the following code into the file:
<%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.mynewurl/mynewpage.asp" %>
- Save and exit.
The redirect should now be working.
|
Add to Favourites
Print this Article
|