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文件 ,所以需要什麼樣的修改?
排序和我的服務器上測試。 –