I'm trying to write an .htaccess line that will rewrite to a php script but still allow any extra get variables to be added on the end. Is this possible?
Currently I'm trying to use this:
RewriteRule ^item/([^/]*)([^/]*)$ /item.php?id=$1&$2 [L]
The aim is to be able to do things like blah.com/item/foo
, but also blah.com/item/foo?bar=whatever
.
Currently it seems to correctly pass the first part, id
, but not the rest.
You can read more about
QSA
(query string append) here: https://httpd.apache.org/docs/2.0/mod/mod_rewrite.htmlYou need to finish with
[L,QSA]