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.
RewriteRule ^item/([^/]*)([^/]*)$ /item.php?id=$1&$2 [L,QSA]
You can read more about QSA
(query string append) here:
https://httpd.apache.org/docs/2.0/mod/mod_rewrite.html
You need to finish with [L,QSA]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With