Max Depth problem

twu
Posts: 22
Joined: Fri Oct 19, 2007 2:57 pm

Max Depth problem

Post 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_)?
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

Max Depth problem

Post 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.
twu
Posts: 22
Joined: Fri Oct 19, 2007 2:57 pm

Max Depth problem

Post by twu »

Thanks! will do.
Post Reply