HTML redirect:
For most of the webmaster, they will prefer 301 Redirect. With HTML redirect with HTML, I will suggest canonical type.
You may use the following script from the HTML with canonical redirection.
<link rel="canonical" href="http://www.mickgenie.com/" />
htaccess with mod_rewrite redirect:
If you are using Apache or Mod_Rewrite enabled Web services, htaccess with mod_rewrite redirect is very useful, you may use the following script to perform your redirection.
RewriteEngine On RewriteCond %{HTTP_HOST} ^mickgenie.com RewriteRule (.*) http://www.mickgenie.com/$1 [R=301,L]
ColdFusion Redirect:
Sample code for Cold Fusion.
<cfheader name="Location" value="http://www.mickgenie.com/">
PHP Redirect:
Sample code for PHP.
<?php header("location:http://www.mickgenie.com"); exit; ?>
ASP Redirect:
Sample Code for ASP.
<%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location", "http://www.mickgenie.com/" %>
ASP.Net Redirect:
Sample Code for ASP.Net.
<script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.AddHeader("Location","http://www.mickgenie.com/"); } </script>
Java Redirect:
Sample Code for Java.
<% response.setHeader( "Location", "http://www.mickgenie.com/" ); response.setHeader( "Connection", "close" ); %>
Perl & CGI redirect:
Sample Code for Perl & CGI.
$q = new CGI; print $q-› redirect(" http://www.mickgenie.com/ ");
Ruby & Ruby on Rails Redirect:
Sample code for Ruby & Ruby on Rails.
head :moved_permanently, :location =› "http://www.mickgenie.com/