我正在尝试使用 PHP API 从 Postman 上传文件。我收到 403 禁止错误:
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<center>
<h1>403 Forbidden</h1>
</center>
</body>
</html>
检查服务器权限
chmod -R 755 /路径/到/上传/目录
chown -R www-data:www-data /路径/到/上传/目录
检查.htaccess规则:检查是否有
Deny from all
文件上传大小限制:文件“php.ini”
upload_max_filesize = 10M
post_max_size = 10M