使用nginx,我想保留url,但无论如何实际加载相同的页面。我将使用 urlHistory.getState()
来路由我的 javascript 应用程序中的请求。看起来应该是一件很简单的事情吧?
location / {
rewrite (.*) base.html break;
}
工作,但重定向网址?我仍然需要网址,我只想始终使用相同的页面。
使用nginx,我想保留url,但无论如何实际加载相同的页面。我将使用 urlHistory.getState()
来路由我的 javascript 应用程序中的请求。看起来应该是一件很简单的事情吧?
location / {
rewrite (.*) base.html break;
}
工作,但重定向网址?我仍然需要网址,我只想始终使用相同的页面。
我认为这将为您做到:
location / {
try_files /base.html =404;
}
使用只是try_files
对我不起作用 - 它导致我的日志中出现重写或内部重定向循环错误。
Nginx 文档有一些额外的细节:
http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files
所以我最终使用了以下内容:
root /var/www/mysite;
location / {
try_files $uri /base.html;
}
location = /base.html {
expires 30s;
}
你原来的重写应该几乎可以工作。我不确定为什么会重定向,但我认为您真正想要的只是
rewrite ^ /base.html break;
您应该能够将其放在某个位置或直接放在服务器中。
这对我有用:
location / {
alias /path/to/my/indexfile/;
try_files $uri /index.html;
}
这允许我为 javascript 单页应用程序创建一个包罗万象的 URL。所有静态文件,如 css、字体和 javascript 构建的,npm run build
如果它们与index.html
.
如果静态文件在另一个目录中,出于某种原因,您还需要以下内容:
# Static pages generated by "npm run build"
location ~ ^/css/|^/fonts/|^/semantic/|^/static/ {
alias /path/to/my/staticfiles/;
}
这对我有用:
location / {
try_files $uri $uri/ /base.html;
}