用户想要重新加载页面时自定义网址

时间:2017-10-02 12:53:26

标签: javascript jquery node.js

我在节点js项目中工作。使用server.js文件中的重定向将页面转到页面。我在html页面脚本中使用window.history.pushState("","","custom.url.testing/taslim");手动自定义了网址。

现在问题是当用户重新加载显示cannnot get /custom.url.testing/taslim的页面时。

如何在浏览器中按重新加载按钮后重新加载操作之前自定义URL?

2 个答案:

答案 0 :(得分:0)

然后使用

    $(document).ready(function(){

    });

表示该网址。

答案 1 :(得分:0)

您需要更新node.js服务器以处理所有自定义网址,并返回与您希望用户加载的路由相同的网址。

这可能意味着您设置了通配符规则,以便/custom.url.testing/*的任何内容都会加载相同的代码。

这可能看起来像

app.get("/custom.url.testing/*", function(req, res, next){
  // same as whatewer your default route  is
  next();
});