RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.mydomain\.com$
RewriteRule (.*) http://mysubdomain.mydomain.com/$1 [R=301,L]
RewriteEngine Off
You will notice that there is a ht.access file in the manager, just rename it to .htaccess. If not, create a new .htaccess in manager and put this in it:
RewriteEngine Off
# Exclude /assets and /manager directories and images from rewrite rules RewriteRule ^(manager|assets)/*$ - [L]
This might help:
# Exclude /assets and /manager directories and images from rewrite rules RewriteRule ^(manager|assets)/*$ - [L]
For more details, plz check on mod_rewrite docs.