You can so this with a .htaccess file which redirects to the correct part of the script when they come from any sub domain.
Checkout this page as is has a similar problem and solution you have:
http://blog.gwebtools.com/apache-htaccess-subdomain-redirect-rules/
Extract:
<IfModule mod_rewrite.c>
RewriteEngine On
#redirect gwebtools.com to www.gwebtools.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www..*
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} ^([^.]*).(com|com/)
RewriteRule ^.*$ http://www.%1.%2%{REQUEST_URI} [R=301,L]
#if subdomain pt or whois and folder port-scanner redirect to pt.gwebtools.com/scanner-porta, with parameters
RewriteCond %{HTTP_HOST} ^(pt|whois)\.gwebtools\.com
RewriteRule ^port-scanner/* http://pt.gwebtools.com/scanner-porta$1 [R=301,L]
</IfModule>
Some information about .htaccess and some info so you can understand what the above code does: http://www.webweaver.nu/html-tips/web-redirection.shtml
Or you can do it in php like this tutorial:
http://php4every1.com/tutorials/multi-language-site/