i recently moved my website to wordpress multi site

intro: because im using wordpress with multisite it doesnt allow using the "www" as sub-domain.

problem: because of that i lost all the "likes".

how can i:

1.tell facebook its the same page so i wont lose the "likes"

or

2.get wordpress with multisite to use "www" subdomain

i've looked everywhere on the net but i couldnt find any answer to the subject

yes i know i cant move likes from one page to other, but what about just removing the wwww? or maybe someone can guide me on how to get wordpress multi-site to show a website with a subdomain of www?

link|improve this question

75% accept rate
feedback

1 Answer

I'm not sure if this helps you with your Facebook problem, but you should definitly redirect the www.whatever.com to whatever.com if you moved your site, so peoples bookmarks, and google now you moved.

The easiest way is propably to edit the .htaccess file in you root directory, to do the redirect. There are tones of online recources about that: Try adding above the wordpress stuff something like:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301] 

Not sure about Facebook though.

link|improve this answer
thanks for trying – Edan Feb 5 at 6:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.