我必須在我的codeigniter應用程序中創建子域。我所嘗試的路由我的網址這樣在codeigniter中創建虛擬子域
www.example.com/subdomain
到
subdomain.example.com/
這是我目前的.htaccess文件
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [PT,L]
我使用這個腳本在服務器上創建http://www.webinfopedia.com/create-subdomain-in-php.html子域
我是如何做這個任務的。任何使用.htaccess或route.php基礎的解決方案。
可能的重複[如何使一個PHP腳本,可以託管子域動態?](http://stackoverflow.com/questions/20720447/how-to-make-a-php-script-that-can-host子域 - 動態) – deceze