Possible Duplicate:
Everything You Ever Wanted to Know about Mod_Rewrite Rules but Were Afraid to Ask?
The below code adds www. to any url that does not start with it:
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)
RewriteRule ^ https://www.%2%{REQUEST_URI} [L,R=301]
However, I want it to do this only when the url is of the format:
something.com
If the url is like:
something.something.com
I do not want the rule adding www.
How do I change this?