gpt4 book ai didi

javascript - 阻止直接访问 js、css 文件但允许从 index.html 访问?

转载 作者:太空狗 更新时间:2023-10-29 15:35:28 28 4
gpt4 key购买 nike

<分区>

这是我的目录:

  • index.html
  • 数据.js
  • .htaccess

index.html 中的内容:

<html>
<body>
<script src="data.js" />
</body>
</html>

我的问题是:

  • 我不希望用户通过像 www.sample.com/data.js 这样的直接链接看到我的 data.js

  • 但是 data.js 仍然允许从 index.html

    访问

我在 .htaccess 中试过:

deny from all

RewriteEngine on 
RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost.*$ [NC]
RewriteRule \.(gif|jpg|css|js|png)$ - [F]

但它也总是阻止来自 index.html 的访问。

谢谢。

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com