can you set up another vhost on your server?
if so, set up one for mydomain.com, second for
www.mydomain.com and in root directory of domain.com place .htaccess with this:
Code:
Redirect 301 / http://www.mydomain.com
---edit---
without second vhost:
in .htaccess:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [nc]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]