Active TopicsActive Topics  Display List of Forum MembersMemberlist  HelpHelp   RegisterRegister  LoginLogin
ISAPI_Rewrite 2.x
 Helicon Tech : ISAPI_Rewrite 2.x
Subject Topic: Addtional Parameters Help Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
narrowpath
Newbie
Newbie


Joined: 26 January 2010
Online Status: Offline
Posts: 2
Posted: 26 January 2010 at 1:00pm | IP Logged Quote narrowpath

I'm currently using the following rewrite rules using ISAPI 2:
--------------------------------------------------
[ISAPI_Rewrite]
RewriteCond Host: dietdirect\.com
RewriteRule (.*) http\://www.dietdirect.com$1 [I,RP]

RewriteRule /wonderslim-12week-weight-loss-kit.html /detail.aspx\?ID=2 [I,L]
RewriteRule /detail.aspx\?ID=2 /wonderslim-12week-weight-loss-kit.html [I,RP]
--------------------------------------------------

This works fine however, I have recently installed some CHAT software (BOLDCHAT) that has a Active co-browse functionality feature. In my local co-browser session, the BOLDCHAT software trys to add parameters to the rewritten url (see example below)

http://www.dietdirect.com/wonderslim-12week-weight-loss-kit.html?bc_ignore_vm=true&bc_random=1587620682963211396

How can I allow additional parameters to be added to the rewritten/redirect urls?

Thanks in advance for any help!

Back to Top View narrowpath's Profile Search for other posts by narrowpath
 
Anton
Admin Group
Admin Group


Joined: 30 January 2007
Location: Ukraine
Online Status: Offline
Posts: 10487
Posted: 27 January 2010 at 2:10am | IP Logged Quote Anton

Do you only need to allow them or to pass them as well?
For just allowing them:

RewriteRule /wonderslim-12week-weight-loss-kit.html(.*) /detail.aspx\?ID=2 [I,L]
RewriteRule /detail.aspx\?ID=2 /wonderslim-12week-weight-loss-kit.html [I,RP]

And for passing them:

RewriteRule /wonderslim-12week-weight-loss-kit.html(?:\?(.*))? /detail.aspx\?ID=2(?1&$1) [I,L]
RewriteRule /detail.aspx\?ID=2(?:&(.*))? /wonderslim-12week-weight-loss-kit.html(?1\?$1) [I,RP]

__________________
Regards,
Anton
Back to Top View Anton's Profile Search for other posts by Anton
 
narrowpath
Newbie
Newbie


Joined: 26 January 2010
Online Status: Offline
Posts: 2
Posted: 28 January 2010 at 4:45am | IP Logged Quote narrowpath

Thanks! Works great!
Back to Top View narrowpath's Profile Search for other posts by narrowpath
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum