How to point http://xxxxx/go-store to http://xxxxx/download.html
location /go-store { rewrite (.*) /download.html; }
Just use rewrite directly and write it in the server configuration
rewrite ^/go-store$ /download.html last;
rewrite ^/go-store$ /download.html