使用apache设置的域上有一个密码:
<Directory "dirname goes here">
AllowOverride AuthConfig
AuthType Basic
AuthName "Authentication Required"
AuthUserFile "filename goes here"
Require valid-user
Order allow,deny
Allow from all
</Directory>
index.html 里面有这个:
<script src = "js/jquery.min.js"></script>
index2.html 里面有这个:
<script src = "js/jquery.min.js"></script>
只有在 index2.html 上,我才会在 chrome 控制台中收到此错误:
GET http://example.com/page/js/jquery.min.map 401 (Authorization Required)
index.html 工作正常。
- 是什么
jquery.min.map
? - 为什么我会收到 401 错误?