| > I can't copy external sites. The html code in base
> site contain no full url address but address like
> this:
> href=index.php?show&pozycja=385899&rok=2008-12-31.
> Do you now how I can copy external sites in this
> case.
> Kris
>
Have you checked the starting page for a "<BASE>" tag in the heading?
I'm not exactly sure how HTT would handle it, but say you were trying to
mirror from www.site.com/index.htm and index.htm had a tag like
<BASE HREF=http://w2.site.com/documents/
Then your href above would actually be a link to
<http://w2.site.com/documents/index.php?show&[...]=2008-12-31>
Using this example, you would need to add a filter like
+w2.site.com/documents/index.php*
to get those pages and you may need additional filters if you want more than
that. | |