I’ve been using rewrite rules for a while, however this is strange.
the site is hosted on dev.domain.com, htaccess code is
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^order/([^/]+) order.php?id=$1 [QSA]
...
however when I go to http://dev.domain.com/order/4 the $_GET isn’t being passed through, never had this sort of a problem before.
The problem was that Nginx doesn’t support .htaccess at all, have to do it it’s own way..