I want to download all zip files from a site. After having a look at the site I
found it all downloads are done by redirection e.g.
www.myserver.com/?dl_id=12345 to a second server (on the main domain) e.g.
downloads.myserver.com/myfile.zip
All sites are served by path structure so there is another big problem (for
me).
I have tried filter like
-*
+myserver.com/?dl_id=*
+myserver.com/*/
+downloads.myserver.com/*.zip
Unfortunately it seems the links to www.myserver.com/?dl_id= are not parsed
correctly as no files where scheduled nor downloaded.
Thanks for your help. |