hello,
when people visiting my site they gey only urls like
http://www.mydomain.com etc etc
but i i want no www, they must see urls like http://mydomain.com
my .hacces file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
hope someone will help