Json 文件在服务器上给出 403 错误

发布于 2024-11-08 03:13:30 字数 145 浏览 0 评论 0原文

我有一个 json 文件,其中包含通过 javascript 访问的数据。在我的 Mac 上的虚拟 MAMP 服务器上它可以工作,但是在我的在线服务器上,当我加载 HTML 文件时,我无法从 javascript 访问 json 文件。我收到 403 无权限访问错误。为什么?

I have a json file contianing data which I access through javascript. On my virtual MAMP server on mac It works, but on my online server when I load the HTML file I cant access the json file from javascript. I get 403 no permission for access error. Why?

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

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

发布评论

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

评论(3

夕嗳→ 2024-11-15 03:13:31

如果您的生产服务器是基于 Linux 的,那么请考虑以下事项:

  1. 请检查您的文件所在的目录。那里必须有一个 .htaccess 文件,其中包含有关目录访问的设置。如果是这种情况,您必须将 json 文件移出该目录,或者禁用相关的 .htaccess 设置。

  2. 此外,在某些情况下,当文件因任何原因无法读取时,您会收到此错误:

    a.文件系统错误 - 运行 fsck;

    b.检查文件权限,该文件应至少具有 644 [rw-r--r--],json 文件所在的目录应至少具有 755 [rwxr-xr -x] ),

If your production server is Linux based then please consider these:

  1. please check the directory your file is inside. There must be a .htaccess file there, which contains settings regarding directory access. If this is the case, you'll have to either move the json file out of that directory, or disable the .htaccess settings in question.

  2. Also, in some cases, you get this error when the file is unreadable for any reason:

    a. file system errors - run fsck;

    b. check file permissions, the file should have at least 644 [rw-r--r--], the directory the json file is inside of, should have at least 755 [rwxr-xr-x] ),

如果没有你 2024-11-15 03:13:31

我刚刚意识到我遇到了同样的问题,因为我的 system.webServer 有 ServiceStack 的处理程序来捕获所有内容:

<handlers><add path="*" name="ServiceStack.Factory" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true" /></handlers>

但我还添加了 staticContent 来提供 JSON 文件扩展名(Windows8 IIS):

<staticContent>
        <remove fileExtension=".json" />
        <mimeMap fileExtension=".json" mimeType="application/javascript" /></staticContent>

当我删除 staticContent 时,我得到了403 错误..但是当我添加它时,ServiceStack 处理程序会覆盖并触发 500...也许您有类似的东西?确保您的配置已设置为处理 mimetype。

I just realised that I was getting the same issue because my system.webServer had handlers for ServiceStack to capture all content:

<handlers><add path="*" name="ServiceStack.Factory" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true" /></handlers>

But I also had added staticContent to deliver the JSON file extension (Windows8 IIS):

<staticContent>
        <remove fileExtension=".json" />
        <mimeMap fileExtension=".json" mimeType="application/javascript" /></staticContent>

When i removed the staticContent, i was getting a 403 error.. but when I add it in, the ServiceStack handler overrides and triggers a 500... perhaps you have something similar? Make sure your config is set up to handle the mimetype.

沉睡月亮 2024-11-15 03:13:31

我也遇到了这个问题。
我注意到我的 apache2.conf 文件中有以下内容:

<Files ~ "\.(env|json|md|gitignore|gitattributes|lock)$">
    Order allow,deny
    Deny from all
</Files>

这就是它被阻止的原因。
要允许访问,您需要从那里删除 json

I also had this problem.
I noticed in my apache2.conf file there is the following:

<Files ~ "\.(env|json|md|gitignore|gitattributes|lock)
quot;>
    Order allow,deny
    Deny from all
</Files>

That's why it's blocked.
To allow access you need to remove the json from there.

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