My url is blabla.in , i was rising up good on google.com.tr cause it was turkish keyword , now i cant find website in com.tr but only co.uk .com is good im on first website. I entered website tools cant change language setting cause .in is india ok? I added language meta tags i dunno if i did right. Do you have any suggestions?
The easiest way to do it would be to add the language code before the head in the html... EG: Change <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> To <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="tur"><head> Or if you plan to mix languages, you can add lang="" to span each paragraph and change the language code depending on the language. EG: <p><span lang="tur">Turkish text here</span></p> <p><span lang="en">English text here</span></p> If the whole page is one language, then I would use the first example. Hope that helps Cheers James