拒绝访问文件

发布于 2024-10-21 07:23:19 字数 145 浏览 0 评论 0原文

如何拒绝从外部访问一个文件?

if you go www.mysite.com/file.txt - ban.
if you go /home/public_html/file.txt - ok.

谢谢 ;)

how denied access one file from outside?

if you go www.mysite.com/file.txt - ban.
if you go /home/public_html/file.txt - ok.

Thanks ;)

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

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

发布评论

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

评论(2

昵称有卵用 2024-10-28 07:23:19

阅读htaccess 技巧
这个

对于所有扩展名的特定文件

<Files file.txt>
  order allow,deny
  deny from all
</Files>

(.txt

<Files ~ "\.txt$">
Order allow,deny
Deny from all
</Files>

Read this htaccess tricks
or this one

for specific file

<Files file.txt>
  order allow,deny
  deny from all
</Files>

for all extension (.txt)

<Files ~ "\.txt$">
Order allow,deny
Deny from all
</Files>
岁月流歌 2024-10-28 07:23:19

假设您使用的是 Apache,则可以使用 .htaccess 文件来限制某些文件类型。

<FilesMatch "\.txt$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

Assuming that you're using Apache, you can use .htaccess files to restrict certain file types.

<FilesMatch "\.txt$">
    Order Allow,Deny
    Deny from all
</FilesMatch>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文