Page 2 of 2

Max Depth problem

Posted: Tue Oct 30, 2007 2:50 pm
by twu
Thanks a lot, Mark. Enterprise option was the one causing problem.:)
I got another question though: how do I write a REX that would exclude all the URLs contains certain word(e.g. _adv_)?

Max Depth problem

Posted: Tue Oct 30, 2007 3:04 pm
by mark
If you just want the substring "adv" the REX would be
adv
If you want it bounded by non-alpha the REX would be
[^\alpha]adv[^\alpha]
If it could be at the end of URL you'll also need
[^\alpha]adv=>>=

BTW, in the future please start a new topic for a new subject.

Max Depth problem

Posted: Tue Oct 30, 2007 3:16 pm
by twu
Thanks! will do.