Here I have .htaccess file with:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [QSA,L]
And rewriting works but there is no path_info in my index.php when I'm trying http://site.com/example .
I have red this topic https://stackoverflow.com/questions/1442854/codeigniter-problem-with-mod-rewrite-on-apache-1-3 but it didn't solve my problem.
So, this issue happens only on apache 1.3 (on 2.0 all is ok) and I wanna know why. I also unfortunately have no access to httpd.conf (
Please, help me.