Routing bug with an url with a period and a query string
Reported by Fabrice Luraine | July 30th, 2010 @ 10:23 AM
If the route has a period in it and the request has a query string, the route won't match.
WORKS
dispatch('/products', 'products');
http://www.abc.com/products&category=123&order=by_price&...
WORKS
dispatch('/products.json', 'products');
http://www.abc.com/products.json
404
dispatch('/products.json', 'products');
http://www.abc.com/products.json&category=123&order=by_pric...
Comments and changes to this ticket
-
Fabrice Luraine August 5th, 2010 @ 11:56 AM
- State changed from new to resolved
Fixed with new url rewrite rules
RewriteRule ^(.*)$ index.php?uri=/$1 [NC,L,QSA]
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Limonade is a PHP micro-framework.