Post Reply 
Redirecting URLs using variables
Feb. 15, 2013, 03:29 AM
Post: #2
RE: Redirecting URLs using variables
Depending on where the code is, you may have to make the Proxomitron keep looking and fill the variable.

With

Code:
www.youtube.com/user/\1   $RDIR(http://www.youtube.com/user/\1/videos?view=0)

the Proxomitron may find "www.youtube.com/user/", realize the match, and stop looking.

Try something like

Code:
www.youtube.com/user/\1  &   $RDIR(http://www.youtube.com/user/\1/videos?view=0)

or

Code:
www.youtube.com/user/(?+)\1   $RDIR(http://www.youtube.com/user/\1/videos?view=0)

HTH
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
Redirecting URLs using variables - zoltan - Feb. 14, 2013, 10:59 PM
RE: Redirecting URLs using variables - JJoe - Feb. 15, 2013 03:29 AM
RE: Redirecting URLs using variables - zoltan - Feb. 15, 2013, 05:37 PM
RE: Redirecting URLs using variables - JJoe - Feb. 16, 2013, 05:33 AM
RE: Redirecting URLs using variables - zoltan - Feb. 17, 2013, 06:31 AM
RE: Redirecting URLs using variables - JJoe - Feb. 17, 2013, 07:37 PM
RE: Redirecting URLs using variables - zoltan - Feb. 18, 2013, 04:26 AM
RE: Redirecting URLs using variables - JJoe - Feb. 18, 2013, 04:13 PM

Forum Jump: