I made a tab as a Facebook Application. This app was made over Codeigniter and it works really fine in my server but when I try to install it in another server, it doesn't work because Joomla is installed with SEF activated. Now, everytime I try to access
SERVER/ci_app/index.php/hello/world it always loads SERVER/ci_app/index.php
I wanted to edit the .htaccess but I didn't do it because the site is very visited and I don't want to mess up something.
The joomla portal is inside a folder lets say "/joomla" with an htaccess. I tried to made my own rule but I don't know if it would modify anything what is inside "/joomla".
RewriteEngine on #This line is already written
RewriteRule ^ci_app/(.*) /ci_app/$1 #Is this ok?
Also, I tried every URI PROTOCOL in the config file without success. How can I make it work? Is it possible to have both systems (Joomla-SEF and Codeigniter) together?
Thanks in advance.