I'm trying to do a url rewrite to hide /index.php/. I've done this successfully for 2 other sites, with help from here previously, but this one is behaving differently.
the data resides here: /volumes/data/cls/
inside of this folder is a php web content (expression engine) installation
#cls
RewriteCond %{HTTP_HOST} ^(.*)testserver\.university\.edu$ [NC]
RewriteRule ^/cls(.*)$ /cls/index.php/cls$1 [L]
the rewrite and the hiding of /index.php/ works but the issue is that we can't get the Expression Engine control panel page to load. it just acts like it's loading "testserver.university.edu/cls" instead of the control panel page.
nowhere in the rewrite code or in the url we load contains the control panel url so i don't understand why it's not working.
[
testserver.university.edu...] (example control panel url)
... rewrites to...
[
testserver.university.edu...]
... in appearance, but the url stays the same as what's typed. because we're loading a url that contains "clsee_system", i don't understand why it's rewriting.
what is working... (an example)
[
testserver.university.edu...]
...rewrites to...
[
testserver.university.edu...]
i don't want this url to rewrite:
[
testserver.university.edu...]
any ideas?
thanks!