We support Microsoft .NET Framework 2.0 & 1.1, all versions of Access, SQL 2000, SQL 7.0, SQL 2005 Express, SOAP, FrontPage 2002, 2003, Visual Studio 2005, Index Server, XML, UDDI, & Mobile device support. We also offer great third party tools like SmarterMail, Merak Mail, SmarterStats, PHP, Perl, MySql, DeepMetrix Livestats XSP 8.0.   We support Microsoft .NET Framework 2.0 & 1.1, all versions of Access, SQL 2000, SQL 7.0, SQL 2005 Express, SOAP, FrontPage 2002, 2003, Visual Studio 2005, Index Server, XML, UDDI, & Mobile device support. We also offer great third party tools like SmarterMail, Merak Mail, SmarterStats, PHP, Perl, MySql, DeepMetrix Livestats XSP 8.0.
 Sunday, November 06, 2005

A 301 permanent redirect is the redirection method recommended by the major search engines. Using a 301 redirect you are in effect telling the search engines the page has moved and to update their index. It also has the nice side benefit of redirecting the benefit of inbound links to the new page.

Implementing a 301 permanent redirect is different depending on the operating system and/or programming language you are using on your server:

IIS Redirect
In internet services manager, right click on /old-file.htm
Select the radio titled "a redirection to a URL".
Enter the redirection page.
Check "The exact url entered above" and the "A permanent redirection for this resource"
Click on 'Apply'
Apache Redirect
Create a file called .htaccess in your root directory and add the following line:

Redirect 301 /current.htm http://www.domainname.com/blabla.htm
ColdFusion Redirect
Edit the file /current.htm and put the following code:

<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://www.domainname.com/blabla.htm">

PHP Redirect
Edit the file /current.htm and put the following code:

<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.domainname.com/blabla.htm" );
?>
ASP Redirect
Edit the file /current.htm and put the following code:

<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", " http://www.domainname.com/blabla.htm"
%>
ASP .NET Redirect
Edit the file /current.htm and put the following code:

<script runat="server">
private void Page_Load(object sender, System.EventArgs e) {
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.domainname.com/blabla.htm");
}
</script>
HTML Redirect
Edit the file /current.htm and put the following code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Your Page Title</title>
<meta http-equiv="REFRESH" content="0;url=http://www.domainname.com/blabla.htm">
</HEAD>
<BODY>Optional page text here.

SEO
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):