Im relatively new to the ionics rewrite filter and im trying to configure my ruleset to allow for additional dynamic rules for my app. I currently have the following rules defined for my shop part of my application.
RewriteRule ^/shop/(.*)/pages/(.*) /index.cfm?go=shop.products&content=$1&CurrentPage=$2
RewriteRule ^/shop/(.*)/pages/(.*)/ /index.cfm?go=shop.products&content=$1&CurrentPage=$2
RewriteRule ^/shop/(.*)$ /index.cfm?go=shop.products&content=$1
RewriteRule ^/shop /index.cfm?go=shop.products
RewriteRule ^/products.cfm /index.cfm?go=shop.products
RewriteRule ^/details.cfm /index.cfm?go=shop.products
A service provider is saying we arent allowing for additional tracking variables to be passed in unless they prefix it with an & symbol.
the URLs look like the below.
www.domainname.com/shop/category-of-products
www.dimainname.com/shop/
with their additional variables they must do as follows
www.domainname.com/shop/category-of-products&additional-query-strings
www.dimainname.com/shop/&additional-query-strings
what they need to do is
www.domainname.com/shop/category-of-products?additional-query-strings
www.dimainname.com/shop/?additional-query-strings
what is it that i need to do to allow for the additional ? to be referenced
Any help greatly appreciated