Welcome Guest, Not a member yet? Register   Sign In
URGENT: Problem with ? in url's
#9

[eluser]fesweb[/eluser]
I have no idea if this will help in your case, but it helped in my particular situation. I had to enable query strings for one unavoidable, non-CI task, but then completely ignore the query string itself.

Enable query strings in the config/config.php
Code:
$config['enable_query_strings'] = TRUE;

The usual rewrite stuff, but WITHOUT the Query String Append (QSA) bit in the .htaccess
Code:
// do this
RewriteRule ^(.*)$ /index.php/$1 [L]
// instead of this
RewriteRule ^(.*)$ /index.php/$1 [QSA, L]


Messages In This Thread
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 03:39 PM
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 03:44 PM
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 03:49 PM
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 03:49 PM
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 03:58 PM
URGENT: Problem with ? in url's - by El Forum - 08-12-2008, 05:05 PM
URGENT: Problem with ? in url's - by El Forum - 08-13-2008, 01:02 AM
URGENT: Problem with ? in url's - by El Forum - 09-04-2008, 11:28 AM
URGENT: Problem with ? in url's - by El Forum - 09-04-2008, 01:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB