I have nginx hosting some static content
location /help/ {
default_type text/html;
alias /etc/nginx/html/help;
index index.html;
}
And that works fine if a request is made
It loads the default page and works without issue.
However if I request http://www.blah.com/help/?_ga=xxxxxxxx.....
The query parameters get requested and return a 404.
So really my query is can I make this request and "ignore" the query parameters or will I need to consider an alternate method -
e.g Proxy pass and a URL rewrite?