2011-10-20 9 views
0

こんにちは私が持っているCI2内でこの.htaccessファイルを使用してこの構造mod_rewriteを変更

http://localhost/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 

Iにファイルを移動したいです同じ.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

今ソートされ、私のサーバー上でテスト。 –