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ファイルで作業していないことが分かった 変更は何ですか?
今ソートされ、私のサーバー上でテスト。 –