2011-10-20 152 views
0

你好,我有這樣的結構mod_rewrite的改變子目錄

http://localhost/ci2 

這個的.htaccess裏面CI2

RewriteEngine on 
RewriteRule ^$ /ci2/index.php [L] 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico) 
RewriteRule ^(.*)$ /ci2/index.php/$1 [L] 

現在我想將文件移動到子目錄

http://localhost/folder/ci2 

我意識到這是不工作在相同的.htaccess文件 ,所以需要什麼樣的修改?

回答

0

你應該只需要更改爲:現在

RewriteEngine on 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico) 
RewriteRule ^folder/ci2/(.*)$ folder/ci2/index.php [L] 
+0

排序和我的服務器上測試。 –