Installed mint today on a set of tools that I have written for the rest of the folks in engineering. Many of these tools use GET method for form submission and therefore pass parameters to the server on the URL. It seems like mint is taking each unique combination of parameters as a separate page. How can I configure it so that a tool, say Tool.cgi is reported as one page, no matter, how many parameter combinations (/Tool.cgi?foo=bar…) it is submitted with. I looked at class.php under default and saw that the page is terminated at “#”
preg_replace(‘/#.*$/
Would changing this or including “?” as a terminator be the answer to this? Is there anything I can do without changing any code? In other words, possible through configuration?