hostinginiz varsa http 301 redirect kullanarak yapabilirsiniz.
.htaccess için
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^siteniz.com [nc]
rewriterule ^(.*)$
www.siteniz.com$1 [r=301,nc]
PHP için
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location:
www.siteniz.com" );
?>
ASP için
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently";
Response.AddHeader("Location","
www.new-url.com");
%>