I hope someone can answer "why" this is the case:
There are times I can use:
...
RewriteRule ^(.*)$ index.php/$1 [L]
and then there are times where the above doesn't work and I must use:
...
RewriteRule ^(.*)$ index.php?/$1 [L]
the main difference being the addition of ? ... I typically see this happen on different system setups, fastcgi vs module vs cgi, but haven't done enough setups to see the pattern.
I am guessing that it is related to how the apache/setup parses path/path_info data. Any thoughts are welcomed, ideally I'd like to have a solid explanation of why this is and when it occurs.
On the same thread ... Sometimes Apache does not output PATH_INFO environment var which might be the root cause of this, but I wonder why that is.
AcceptPathInfoapache config option. – Frank Farmer Apr 14 '11 at 21:50AcceptPathInfobut it didn't seem to effect anything, at least it appeared that way. – farinspace Apr 14 '11 at 22:13qsappend|QSA? – 0xC0000022L Apr 21 '11 at 23:57