如何保护 www 目录中包含的文件

发布于 2024-08-20 15:22:17 字数 58 浏览 5 评论 0原文

现在我已经在 mysql 中设置了密码,剩下的唯一安全问题是保护我的 www 目录中的 php 文件。

Now I have put a password in mysql, the only security problem that is left is to secure the php files that are in my www directory.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栀子花开つ 2024-08-27 15:22:17

定义保护您的 php 文件的含义...

您的意思是保护您编写的代码还是保护 php 代码内容不被其他人查看,您的意思是网络上的其他人还是您计算机上托管代码的其他用户?

  • 通过在 Web 服务器配置中添加适当的文档处理程序(即,使 .php 可执行),保护来自 www 用户的文件。
  • 通过 chmod'ing 到 700 或 770(在服务器作为不同的服务器运行的情况下)保护来自本地用户的文件。用户作为文件所有者)。

Define what you mean by secure your php files...

Do you mean secure the code you have written or secure the php code content from being viewed by others, do you mean others on the web or other users on your machine hosting the code?

  • Secure the files from www users by adding the proper document handlers in your web server config (ie, make .php executable)
  • Secure the files from local users by chmod'ing to 700 or 770 (in the case that the server runs as a different user as the file owner).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文