密码保护直接在 WordPress 中下载

发布于 2024-10-21 01:50:06 字数 193 浏览 1 评论 0 原文

我正在尝试在 cpanel 中对 WordPress 中的目录进行密码保护,但它不起作用,WordPress 不断获取 URL 并写入它自己的软件。我该如何解决这个问题?

即使我将文件放在 /wp-content/uploads/downloads/ 中,它仍然无法将它们识别为可下载,它会转发到 WordPress 404 错误

I'm trying to password protect a directory in wordpress in my cpanel and it's not working, wordpress keeps picking up the URLs and writing to it's own software. How can I get around this?

Even if I put my files in /wp-content/uploads/downloads/ it's still not recognizing them as downloadable, it forwards to a wordpress 404 error

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

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

发布评论

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

评论(2

誰認得朕 2024-10-28 01:50:06

1) 在要隐藏的目录中创建一个包含以下内容的 .htaccess 文件:

 AuthUserFile /www/path/to/file/.htpasswd
 AuthGroupFile /dev/null
 AuthName "Confidential Information"
 AuthType Basic
 require user admin

然后创建一个包含以下内容的 .htpasswd 文件:

admin:password

然后只有用户“admin”和密码“password”才能访问该目录。

或者..

2) 如果您只是将其移动到公共 HTML 根文件夹下方,那么您不必担心密码保护它 - 如果没有直接服务器访问,没有人可以访问它

1) create a .htaccess file in the directory you want to hide with this content:

 AuthUserFile /www/path/to/file/.htpasswd
 AuthGroupFile /dev/null
 AuthName "Confidential Information"
 AuthType Basic
 require user admin

then create a .htpasswd file with this content:

admin:password

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

凤舞天涯 2024-10-28 01:50:06

在下载目录中创建一个 .htaccess 文件:

AuthUserFile /path/to/file/.htpasswd
AuthGroupFile /dev/null
AuthName "Confidential Information"
AuthType Basic
require valid-user

创建一个 htpasswd 文件(在 Web 根目录之外),如下所示:

htpasswd -bc /path/to/file/.htpasswd admin password

Create a .htaccess file in your downloads directory:

AuthUserFile /path/to/file/.htpasswd
AuthGroupFile /dev/null
AuthName "Confidential Information"
AuthType Basic
require valid-user

Create a htpasswd file (outside your web root) like so:

htpasswd -bc /path/to/file/.htpasswd admin password
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文