After uploading my Kohana project to my Godaddy server, I noticed my standard .htaccess file wasn't working sufficiently to provide the clean URLs. After some guidance, I ended up with the following rule:
RewriteRule .* index.php?kohana_uri=$0 [PT,L]
This got my nice-URLs working again, but today I find out that it may be breaking my internal search-engine, which also uses GET-style variables:
/search?terms=php
The values aren't being found by the scripts. They are on my development-server which doesn't have the modified RewriteRule, but not on the Godaddy server which does use the RewriteRule.
Am I right in assuming that rule is breaking any scripts ability to read from $_GET, and if so how can I remedy this?