I want to get URLs from <http://example.dev/current>
I want to filter only URL that contain the word "console". All other URL that
is not contain the word "console" will be skipped.
Example:
<http://example.dev/current/console/> => OK
<http://example.dev/current/console/anyfile.html> => OK
<http://example.dev/current/components/console> => OK
<http://example.dev/current/components/console/> => OK
<http://example.dev/current/components/console/anyfile.html> => OK
<http://example.dev/current/something-else/> => SKIPPED
How to filter some thing like this?
Scan rules options -* +*console* is not working because it can only get a URL
from <http://example.dev/current>
|