Can you take a look and help me please? http://tatanano.org/ http://www.tatanano.org/ I also tried redirecting non-www to www, and although I copied the htaccess from my other blogs where it is working, here all was screwed up. Will give green, ofcourse!
Don't copy the whole .htaccess file. Instead, delete .htaccess existing one, then create a new one and include this code: The code to redirect tatanano.org to www.tatanano.org would be as follows. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www\.tatanano\.org [NC] RewriteRule ^(.*)$ http://www.tatanano.org/$1 [L,R=301] </IfModule> The code to redirect www.tatanano.org to tatanano.org would be as follows. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^tatanano\.org [NC] RewriteRule ^(.*)$ http://tatanano.org/$1 [L,R=301] </IfModule> Use either of the code set to your preference.
got to your wp admin, settings and update your blog url from http://tatanano.org/ to http://www.tatanano.org/