403 从 Postman 上传文件到 PHP API 时出现禁止错误403 禁止

问题描述 投票:0回答:1

我正在尝试使用 PHP API 从 Postman 上传文件。我收到 403 禁止错误:

<html>

<head>
    <title>403 Forbidden</title>
</head>

<body>
    <center>
        <h1>403 Forbidden</h1>
    </center>
</body>

</html>
php api apache file upload
1个回答
0
投票
  1. 检查服务器权限

    chmod -R 755 /路径/到/上传/目录

    chown -R www-data:www-data /路径/到/上传/目录

  2. 检查.htaccess规则:检查是否有

    Deny from all

  3. 文件上传大小限制:文件“php.ini”

    upload_max_filesize = 10M

    post_max_size = 10M

© www.soinside.com 2019 - 2024. All rights reserved.