在刪除index.php時出現問題?從網址:CodeIgniter Mod_Rewrite問題
http://localhost/index.php?/reset_password
隨着htaccess文件:
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
CI設置:
$config['uri_protocol'] = 'AUTO';
我看着這裏有類似問題的其他線程,但沒有自己的htaccess檔案工作。我錯過了一個設置?
如果您可以通過其他不適合您的'.htaccess'設置鏈接到帖子,那將非常有幫助。 – 2012-03-03 23:20:46
第一個5 http://stackoverflow.com/search?q=CodeIgniter+Mod_Rewrite+issues – user781439 2012-03-03 23:23:38