Need advice on nginx path?
给我你的怀抱
给我你的怀抱 2017-05-16 17:25:23
0
3
399

How to point http://xxxxx/go-store to http://xxxxx/download.html

给我你的怀抱
给我你的怀抱

reply all(3)
巴扎黑
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!