My search results have a count for "/" page (default home page) and "index.asp" separately. How can I combine these in the query?
thanks
You could dynamically override certain page values like this:
base search | eval page = if(match(page, "(?i)^(/|index.asp)$"), "Homepage", page) | ...
You could dynamically override certain page values like this:
base search | eval page = if(match(page, "(?i)^(/|index.asp)$"), "Homepage", page) | ...