0 Replies Latest reply on Nov 23, 2009 9:18 PM by samuraicoder

    Url Rewrite Filter 3.2.0

    samuraicoder
      I have an old asp site that needs to redirect traffic to a new JSF/SEAM site.

      right now I just want to assign a generic promoCode and redirect them.

              <rule>
                      <from>^/store/([^/]+)/affil.asp</from>
                      <to type="redirect">/webstore/store/$1/home.do?promoCode=BWRAFFILWEBMACSS</to>
              </rule>

      What is happening I believe is that the are getting a new session/conversation.

      How in the rule above can I have them rejoin whatever session/conversation they were in so that the redirect actually works??


      Right now because of the lost session they are getting redirected back to a "sign in" page.