How can I implement dynamic subdomains in codeigniter with .htaccess?
this code is working for my site, you can move your site into your other domain or folder ( whatever you want ).
RewriteEngine on
RewriteCond $1 !^(index\.php|application/assets|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]