I'm using media temple grid-server hosting, and I think it has a very particular way of handling htaccess files, which I haven't figued out yet.
This is what I want to do:
make
domain.com/index.php/something/
look like
domain.com/something/
The code I currently have if this:
Options +Indexes +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)/$ index.php/$1 [L]
That's the only way it works. I get rid of the / in ^(.*)/$ or put a question mark besides it and it will stop working. I've tried codes so it excludes real directories and files, but it will stop working. Also, I wanted it to be able to work with or without a trailing slash at the end of the URL, I've tried all kinds of codes, and again, it will just stop working.
If someone could pleeasee help me I would appreciate it a lot. I've been trying to figure this out for months now.