If your host is unix/apache based you can use the .htaccess file to do this.
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} otherdomain.com
RewriteCond %{REQUEST_URI} !subdirectory/
RewriteRule (.*)$ subdirectory/$1 [L]
HalfaBee