.htaccess dosyası ile yapmak için şu kodları o dosyaya ekle
Htaccess 301 Yönlendirmesi
Options +FollowSymlinks
RewriteEngine on
ReWriteCond %{HTTP_HOST} ^(www.)?x.com$ [NC]
ReWriteRule ^(.*)$ http://x.net/ $1 [R=301,L]
.htaccess sitenin bulunduğu ana klasörde olur.
Php kullanıyorsan Şunu yap :
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://x.net " );
?>
Bu kodu index.php dosyasına ekle yönlendirmeyi yapacaktır.
APS kullanıyorsan
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently";
Response.AddHeader("Location","http://x.net/");
%>
Yine aynı şekilde index.asp sayfasına ekle ve yönlendirme tamamlanır.