Answer the question
In order to leave comments, you need to log in
GET parameter not passed with htaccess settings?
Specified so in htacces, everything works if you go to site.com/category/pc
But if you pass get parameters site.com/category/pc?price=600
Then the price is not transferred to get how to make it pass?
RewriteRule ^category/([^/]*)$ category.php?id=$1 [L]
Answer the question
In order to leave comments, you need to log in
[L,QSA]
QSA - saves get parameters.
DON'T forget that from the point of view of mod_rewrite GET is not part of the url at all and is allocated at all through
QUERY_STRING
. Again, what you are doing looks like a crooked CNC craft
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question