如何隐藏出现在地址栏中的网址(使用javascript)
我正在开发一个嵌入式网络服务器。现在,我一开始就有一个接受用户名的访问验证页面(例如 http://192.168.1.1/)和密码并验证它,然后将用户重定向到实际的设备控制网页(http://192.168.1.1/devicecontrol.html)。我不希望实际的网址出现在地址栏上。相反,应保留初始网址,以便用户不能直接访问此页面,也不能为此页面添加书签....我知道这一定是一个常见要求,但找不到任何具体答案...任何帮助/非常感谢参考文献...提前致谢。
I am developing an embedded web server. Now, I have an access validation page (e.g. http://192.168.1.1/) at the very start that accepts username and password and validates it and later redirects the users to the actual device control web page (http://192.168.1.1/devicecontrol.html). I do not want the actual url to appear on the address bar. Instead the initial url should be retained so that users cannot directly visit this page and neither be able to bookmark this page....I understand this must be a common requirement but could not find any specific answers to this...any help / references would be hugely appreciated....Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单独使用 Javascript 是不可能的。使用框架集(或者如果您使用 Apache,请查看 mod_rewrite 模块< /a>)。
还有一个建议:不要这样做!当我四处点击并且 URL 没有改变时,我会立即离开您的网站。看来你在隐瞒什么。
That's not possible with Javascript alone. Use a Frameset (or if you're using Apache take a look at the mod_rewrite module).
One more advice: Don't do it! I would leave your site immediately, when I click around and the URL doesn't change. Looks like you're hiding something.