|
www. is a subdomain. it does not necissarily have to be the same thing as the non www version.
you also can use .htaccess to automatically redirect one to the other. likeso:
AddType text/html .shtml
AddHandler server-parsed .htm
AddHandler server-parsed .html
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^search-marketing\.info
RewriteRule ^(.*)$ http://www.search-marketing.info/$1 [R=permanent,L]
|