我想使用 dropzone.js 上传多个文件但出现错误

I want to upload multiple files using dropzone.js but getting error

我正在使用 dropzone.js 上传多个文件,但在上传时出现如下错误

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL /file-upload was not found on this server.</p><p>Additionally,
a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p><hr><address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/7.0.9 Server at localhost Port 80</address></body></html> 

我不知道是什么问题,我从 codepen 复制了相同的代码,但出现错误,请帮助我,提前谢谢。

尝试把url放在初始化

$(function(){
      Dropzone.options.myAwesomeDropzone = {
        maxFilesize: 5,
        ....
        url: /url_to_upload_file,

        init:function(){
          ...
        }
      };
    })