I'm running AWStats on a Rails site with nginx and I have pages that are accessed like this
http://mysite.com/order/receipt/[receipt_tag]
I'd like for AWStats to show those as x hits for page /order/receipt/*
instead of 1 hit for [tag x], and 1 for [tag y] and so on. The closest directive I've found is URLWithQueryWithoutFollowingParameters
, but since I'm using params as path components, I don't think that applies.
Same issue but with a (probably) more common scenario is combining ID's into one page. So /admin/orders/[order_id]
should be reported as x hits for /admin/orders/*
instead of /admin/orders/1
and /admin/orders/2
, etc.
Is that possible?