On Sun, 13 Jan 2002, Tim Hewitt wrote: > So for htdig, I'd need something that looks like something like this to > follow all the links through my site, including subdomains: > > url_part_aliases: *.mydomain.com/* *.mydomain.com:8080/*
Not quite. First off, you just match strings, so you don't want (or need) the * characters. Secondly, the way the attribute works is to "encode" the URL into something on indexing and then "decode" the URL on searching. So you aren't trying to "transform" like you've done here. for htdig url_part_aliases: .mydomain.com:8080/ *2 for htsearch url_part_aliases: .mydomain.com/ *2 And I've picked '*2' as an arbitrary string that won't occur in a URL. -- -Geoff Hutchison Williams Students Online http://wso.williams.edu/ _______________________________________________ htdig-general mailing list <[EMAIL PROTECTED]> To unsubscribe, send a message to <[EMAIL PROTECTED]> with a subject of unsubscribe FAQ: http://htdig.sourceforge.net/FAQ.html

