http://www.mydomain.com/sorular/*
şöyle olmasını istiyorsunuz :
http://*.mydomain.com/
örneğin
http://www.mydomain.com/sorular/ornek
http://ornek.mydomain.com/
htaccess dosyanıza yazmanız gereken kod :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.mydomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^.mydomain.com$
RewriteRule ^questions/([^/]+)/?$ http://$1.mydomain.com/ [NC,R=301,L]