Is there a way to password protect HTML pages without using a server side language?(有没有办法在不使用服务器端语言的情况下对 HTML 页面进行密码保护?)
问题描述
我有一系列相互关联的网页,我想通过要求用户提供登录名和密码来限制对这些网页的访问.但是,我的托管帐户目前不提供任何服务器端脚本功能 - 有什么方法可以仅使用客户端脚本来实现此目标?
I have a series of interlinked web pages, and I want to restrict access to these pages by asking the user to provide a login and password. However, my hosting account currently does not provide any facility for server side scripting - is there any way I can accomplish this objective using only client side scripts?
我想知道下面的程序是如何工作的 -
I was wondering how the following program works -
http://www.myzips.com/software/HTML-Password.phtml
澄清:感谢您的意见.但是,如果我正在配置 Web 服务器,那么用户是否有可能输入用户名和密码?
Clarification: Thanks for your inputs. However, if I am configuring the web server, then is there a possibility of the user entering an username and password?
推荐答案
没有办法创建安全的客户端脚本.如果用户可以访问它,它就是不安全的.
There is no way to create a secure clientside script. If the user has access to it, it's insecure.
如果您的主机运行的是 apache,您可以使用 .htaccess 保护文件夹,在 IIS 上,您可以通过目录安全保护文件夹.
If your host is running apache you can secure folders using .htaccess, on IIS you can do the same through directory security.
这篇关于有没有办法在不使用服务器端语言的情况下对 HTML 页面进行密码保护?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法在不使用服务器端语言的情况下对 HTML 页面进行密码保护?
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01