Hello
I use the old category tree from Emporium Plus which creates urls like
http://www.domain.com/c/Examplecat/Example-Cat.html
Here Examplecat is an actual category
If I add
http://www.domain.com/c/Examplecat/Example-Cat.html?source=advertiser-ad
The source part does not come through in my analytics
CURRENT HTACESS
RewriteCond %{REQUEST_URI} ^/p/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=PROD&Product_Code=%1&Store_Cod e=001 [L,QSA]
RewriteCond %{REQUEST_URI} ^/pc/(.*)/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=PROD&Product_Code=%1&Category_ Code=%2&Store_Code=001 [L,QSA]
RewriteCond %{REQUEST_URI} ^/c/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=CTGY&Category_Code=%1&Store_Co de=001 [L,QSA]
What I think I should do
RewriteCond %{REQUEST_URI} ^/c/(.*)/(.*)?source(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=CTGY&Category_Code=%1&Store_Co de=001&source=%3 [L,QSA]
Am I correct?
I have been reading all kinds of articles on htacccess - and decided that it might be wiser to ask someone who has done this before - before I start experimenting for hours.
Any Help appreciated.
Thanks
Sam
I use the old category tree from Emporium Plus which creates urls like
http://www.domain.com/c/Examplecat/Example-Cat.html
Here Examplecat is an actual category
If I add
http://www.domain.com/c/Examplecat/Example-Cat.html?source=advertiser-ad
The source part does not come through in my analytics
CURRENT HTACESS
RewriteCond %{REQUEST_URI} ^/p/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=PROD&Product_Code=%1&Store_Cod e=001 [L,QSA]
RewriteCond %{REQUEST_URI} ^/pc/(.*)/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=PROD&Product_Code=%1&Category_ Code=%2&Store_Code=001 [L,QSA]
RewriteCond %{REQUEST_URI} ^/c/(.*)/(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=CTGY&Category_Code=%1&Store_Co de=001 [L,QSA]
What I think I should do
RewriteCond %{REQUEST_URI} ^/c/(.*)/(.*)?source(.*) [NC]
RewriteRule (.*) /mm5/merchant.mvc?Screen=CTGY&Category_Code=%1&Store_Co de=001&source=%3 [L,QSA]
Am I correct?
I have been reading all kinds of articles on htacccess - and decided that it might be wiser to ask someone who has done this before - before I start experimenting for hours.
Any Help appreciated.
Thanks
Sam
Comment