My application have domain as cool_event whereas it's parent domain is coolacharya.com
So when I hit URL as http://coolacharya.com/cool_event/admin_event. After hitting this URL, if login is successful with user_name shruti then the URL should be like http://shruti.coolacharya.com/cool_event/admin_event Or coolacharya.com/shruti.cool_event/admin_event
I don't want to create separate folder for each user.
My .htaccess file is:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [PT,L]