I have to create subsomain in my codeigniter application. what i am try is routing my URl in this way
www.example.com/subdomain to
subdomain.example.com/ it is my current .htaccess file
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php?/$0 [PT,L] i use this script to create subdomain on server http://www.webinfopedia.com/create-subdomain-in-php.html
How i do this task. any solution with .htaccess or route.php base.