Query about google search

Status
Not open for further replies.

a_k_s_h_a_y

Dreaming
if i search for akshayy

then my site shows up as *akshayy.com but not as *www.akshayy.com

why is this so ??

and if the preferred domain to set to www.akshayy.com in google webmaster tools, how will it affect the site's rankings ??
 

nileshgr

Wise Old Owl
Create a .htaccess file with the following code (i am assuming that your server uses Apache and allows .htaccess files)

Code:
RedirectPermanent /  "*www.akshayy.com/"
Just copy and paste it. DO NOT FORGET THE LAST SLASH.
 

ravi_9793

TechTin.com
Dont play with the default .htaccess file. Better add this line at last of .htaccess file.

Code:
Options +FollowSymLinks 
RewriteEngine on 
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com 
RewriteRule ^(.*)$ *www.whost.in/$1 [L,R=301]
Replace www.whost.in with the site where U want to redirect.

You can also do this from your cpanel, if your host provide you the option of redirect.
 
Status
Not open for further replies.
Top Bottom