| I'm trying to understand how to use the scan rules to
exclude/include URLs.
I'm trying to get:
....-20.html to
....-29.html
I've tried
+....-2[0-9].html That didn't get those pages.
+....-2*[0-9].html That got them but also got -200, etc
The only way I can get it to work is:
+....-20.html
+....-21.html
+....-22.html
etc
Ultimately I want to get
....-13.html to
....-50.html but I think that needs to be broken into
multiple scan rules.
Philip
| |