This is on a on raq3, and i am prety sure it's server specific.
I am having a bit of a problem with an application that I have used on other servers, but on the raq3 it's not working.
in the index.phtml is this line:
if(isset($PATH_INFO)) { list($file, $fld, $ide, $news) = explode('/', substr($PATH_INFO,1)); }
which is supposed to take everything after the index.phtml and split it into variable...
if i put in a path like...
www.site.com/index.phtml/a/b/c/d
echo $file.$fld.$ide.$news;
should return
abcd,
but insted it just echoes index.phtml and has lost the other variables.
here is the .htaccess file.
Options +FollowSymLinks
RewriteEngine On
RewriteRule index.*$ index.phtml
Any ideas why this would be happening would be mucho-ly appreciated.
Ryan