6
nginx:将所有请求发送到单个html页面
使用nginx,我想保留url,但是无论如何实际上加载相同的页面。我将使用url和History.getState()在javascript应用中路由请求。看起来应该是一件简单的事情? location / { rewrite (.*) base.html break; } 可以,但是重定向网址?我仍然需要网址,我只想始终使用同一页面。
156
javascript
nginx
history