Попробуйте добавить следующее в файл .htaccess
в корневом каталоге вашего сайта example.com.
RewriteEngine on
RewriteBase /
#if on example.com host
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
#and the directory/folder does not exist
RewriteCond %{REQUEST_FILENAME} !-d
#redirect to folder.example.com
RewriteRule ^(\w+)$ http://$1.%{HTTP_HOST} [R,L]