密码保护直接在 WordPress 中下载
我正在尝试在 cpanel 中对 WordPress 中的目录进行密码保护,但它不起作用,WordPress 不断获取 URL 并写入它自己的软件。我该如何解决这个问题?
即使我将文件放在 /wp-content/uploads/downloads/
中,它仍然无法将它们识别为可下载,它会转发到 WordPress 404 错误
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1) 在要隐藏的目录中创建一个包含以下内容的 .htaccess 文件:
然后创建一个包含以下内容的 .htpasswd 文件:
然后只有用户“admin”和密码“password”才能访问该目录。
或者..
2) 如果您只是将其移动到公共 HTML 根文件夹下方,那么您不必担心密码保护它 - 如果没有直接服务器访问,没有人可以访问它
1) create a .htaccess file in the directory you want to hide with this content:
then create a .htpasswd file with this content:
and then only user 'admin' with password 'password' should be able to access directory.
or..
2) if you just move it below than the public HTML root folder then you don't have to worry about password protecting it - nobody can access it without direct server access
在下载目录中创建一个
.htaccess
文件:创建一个 htpasswd 文件(在 Web 根目录之外),如下所示:
Create a
.htaccess
file in your downloads directory:Create a htpasswd file (outside your web root) like so: