如何将网站设为私有?
我只是在闲逛,学习网络开发的细节,我想将我的域名设为私有,直到我准备好展示它。
最好的方法是什么?
顺便说一句,我在 Debian 上有一个 Apache 服务器。
I'm just fooling around, learning the ins and outs of web development and I'd like to make my domain private until I'm ready to display it.
What's the best way to do this?
BTW, I have an Apache server on Debian.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 .htaccess 文件创建用户/密码提示(请注意,这可能会被暴力破解,但会将公众拒之门外)
这里有一篇关于如何实现此操作的好文章: http://www.freewebmasterhelp.com/tutorials/htaccess/3
use an .htaccess file to create a user/pass prompt (be warned that this can be bruteforced but it'll keep the general public out)
here's a good article on how to go about implementing this: http://www.freewebmasterhelp.com/tutorials/htaccess/3
您可以执行我能想到的两件事之一:
You can do one of two things that I can think of:
其他替代方案:
Other alternatives:
快速而简单的方法是告诉计算机的防火墙阻止端口 80(网络服务器使用的端口)。
此外,根据您的网络服务器,您可以将其配置为仅在本地主机上提供服务。
例如,在 Apache 中,我相信您可以编辑 httpd.conf 文件并添加
Listen 127.0.0.1:80
。Quick and easy way would be to tell your computer's firewall to block port 80 (the port webservers use).
Also, depending on your webserver, you could configure it to only serve on localhost.
In Apache, for example, I believe you can edit the httpd.conf file and add
Listen 127.0.0.1:80
.将其放在隐藏目录中,并使顶级站点为空页面。除非有人知道或猜测目录名称,否则没有人会看到您的实际站点。
Put it in a hidden directory and have the toplevel site be an empty page. Unless someone knows or guesses the directory name, no one will see your actual site.