@Anonymous Thank you for your question.
The first item is that you will need to convert the #
in your URL field to %23
as #
is considered an unsafe character. More information on encoding unsafe URL characters can be found here.
Since it sounds like you'll want this to be applied to every query, regardless of the full-text search terms, I'd suggest using something like an OData filter and using an operator such as not
to have it not include %23
or .htm
. More information on OData filters can be found here.
Please review this content and let us know if there are any further questions on the matter.