How can I forward short-dom.com to long-domain.com ?
I keep seeing examples like:
RewriteCond %{HTTP_HOST} ^a\.com$ [NC]
RewriteRule ^(.*)$ http://www.a.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^b\.com$ [NC]
RewriteRule ^(.*)$ http://www.b.com/$1 [L,R=301]
But these don't allow me to specify my short domain (all combinations of it - with or without www.)...