Hi:
I have a website up and running based on CodeIgniter. It works fine online. But the mod rewrite is not working on my local PC.
I'm running Apache/2.2.10 (Win32) with PHP/5.3.5.
The phpinfo shows that mod_rewrite is loaded .
I look in the apache config and it is loaded (un-commented) there too.
This is what I have in my .htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
This is becoming an issue as I can not test my pages locally before going live.
Your help is greatly appreciated. thanks
Kamy