Home > Q&A > body text
How to point http://xxxxx/go-store to http://xxxxx/download.html
巴扎黑2017-05-16 17:27:23
location /go-store { rewrite (.*) /download.html; }
黄舟2017-05-16 17:27:23
Just use rewrite directly and write it in the server configuration
rewrite ^/go-store$ /download.html last;
仅有的幸福2017-05-16 17:27:23
rewrite ^/go-store$ /download.html