Hello,
I have a strange Problem.
System: XAMPP local Win XP PHP 4.4.1
I followed the instructions of the mod_rewrite wiki. http://www.codeigniter.com/wiki/mod_rewrite/
And it seemed to work.
The Problem is - that CI first produces the expected page.
But when I reload it, it shows just a blank page. (No error! - Apache access.log says 200 OK)
The CI-log shows:
DEBUG - 2007-02-10 23:02:51—> Final output sent to browser
DEBUG - 2007-02-10 23:02:51—> Total execution time: 0.0705
DEBUG - 2007-02-10 23:02:52—> Config Class Initialized
DEBUG - 2007-02-10 23:02:52—> Hooks Class Initialized
ERROR - 2007-02-10 23:02:52—> 404 Page Not Found—>
It has to do with the .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /path/to/index/php/ # path to the folder containing the index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule><IfModule !mod_rewrite.c>
# If we don’t have mod_rewrite installed, all 404’s
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughinErrorDocument 404 /index.php
</IfModule>
I appreciate every hint
Thanks in advance
uprocka
