
Originally Posted by
FloridaRealtor
Regardless of your policy on Links, Thanks for your time and sharing your experience!!!
Happy to be of help.

Originally Posted by
FloridaRealtor
I thought that everything I was doing was with the www.KeysToFlorida.com site and that the non-WWW site was redirecting. How can I tell? Is there a reference you can point me at to help here?
There are tons of tools for checking headers. For instance:URL Redirect Server Response Check.
If you check both versions, WWW and Non-WWW, you will get a "HTTP/1.1 200 OK" vs. HTTP/1.1 301 Moved Permanently for one or the other. [See HTTP/1.1: Status Code Definitions].
You're on an Apache Server and chances are good that Mod_rewrite is configured so here is an example of the code you can place in your .htaccess file to redirect the Non-WWW version to the WWW version. If you're not familiar with .htaccess files let me know. Here is the code:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.keystoflorida\.com [NC]
RewriteRule ^(.*) http://www.keystoflorida.com/$1 [L,R=301]