I just started my new website www.free-eye-exam.info and it shows up perfectly, however, when I type in Free-Eye-Exam.info the page does not show up. How can I fix this?
Had this issue before, I'm pretty sure there was a setting in the admin panel for wordpress. Also I just googled it and got this: RewriteEngine on # Add a leading www to domain if one is missing. # RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] # Add a trailing slash if needed # #RewriteCond %{REQUEST_URI} ^/[^.]+[^/]$ #RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L] This might help, stick it in a file named simply '.htaccess' and put it in the root of your site.
Sorry for last misunderstanding. it seems that your domain is not pointed with dns correctly.www is set correctly, but exact domain is not set and it shows parked page. I think THIS will be helpful for you. Also you can make A entry for the ip of blogger server.
I think the only things you must to do now is create one .htaccess file in the root folder, with the code below, to re-direct www to non-www: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www.free-eye-exam.info [NC] RewriteRule ^(.*)$ http://free-eye-exam.info/$1 [L,R=301]