I switched from webserver:
1 On the old one PHP runs as Apache Handler
2 On the new server PHP runs as FAST/CGI
The rewrite was:
1: RewriteRule ^(.*)$ index.php/$1 [L]
But FASTCGI doesn’t like that and it has to be:
RewriteRule ^(.*)$ index.php?/$1 [L] (question mark before slash)
The problem:
When redirecting in the htaccess, like this:
/content/faq /faq
The url becomes this:
http://www.domain.com/faq?/content/faq
The last part after the question mark should not be there.
Any idea?
Moved to CodeShare Corner by Moderator