2013-05-15 94 views
0

將CodeIgniter庫上載到public_html/ci/文件夾中。我已經將application/config/routes.php中的默認控制器設置爲我的默認控制器。修改用於CodeIgniter庫的.htaccess文件

現在我想更新.htaccess文件,以匹配mysite.com調用mysite.com/ci/index控制器或mysite.com/about匹配mysite.com/ci/about控制器,該模式將使用。

我該怎麼做?

回答

0

將下面幾行添加到.htaccess中。將.htaccess文件放在public_html/ci/

RewriteEngine On 
RewriteBase /ci 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 

RewriteCond $1 !^(index\.php) 
RewriteRule ^(.*)$ /index.php/$1 [L] 
+0

不,我想你誤會了我。我需要在我的public_html / – user1765862