I know how to rewrite in the reverse direction and process the Query String, but I need to create one query string parameter based on the tag or category, in lowercase. Therefore, I can user the query string as search parameter in my page:
e.g.
news/tag/Shipping/ ==> http://www.example.com/news/?tag=shipping
news/category/Other/ ==> http://www.example.com/news/?category=other
Tried
RewriteEngine On
RewriteRule ^news/([^/]*)$ /?tag=$1 [L]
Thank you.