I have referred other related question but they are not clear to me. Please explain me: How can I make subdomain in PHP?
Example :
http://www.domainn
You could use .htaccess url rewrite to make that.
Just rewrite www.(username).site.com to www.site.com/profile/(username)
the code for that would be something like..
RewriteRule ^(.*).site.nl site.nl/profile/$1
if my memory serves me right