我收到一个 POST https://www.example.com/php/download.php 405(不允许),这个 ajax 调用我的 php 脚本。它用于我编写的用于下载文件的 http 文件服务器...使用 php 在 Web 根目录之外获取它们。我的其他 PHP 脚本/ajax 调用适用于我的 http 文件服务器......我只是在这个特定的 ajax 调用/php 脚本中遇到了这个问题。我正在使用 Nginx。
同样,只是为了强调....在同一台服务器上,其他 ajax 调用和其他 php 脚本工作。所以,有点输了。
<?php
$path = "/trunk/";
$file = $_POST['filename'];
$file_ext = pathinfo($file, PATHINFO_EXTENSION);
$file_name = pathinfo($file, PATHINFO_BASENAME);
$file_full = $path . $file_name;
$finfo = new finfo(FILEINFO_MIME);
$ctype = $finfo -> file($file_full);
header('Content-Disposition: attachment; filename=\"$file_name\"');
header("Content-Type: " .$ctype);
readfile($file_full);
?>
187
188 function downloadFile(event) {
189 var fname = event.target.getAttribute("href");
190 fname.replace("#","");
191 var form = new FormData();
192 form.append("filename", fname);
193
194 var xhr = new XMLHttpRequest();
195 xhr.onreadystatechange = function () {
196 // setTimeout(refresh, 500);
197 }
198
199 xhr.open("POST", "php/download.php", true);
200 xhr.send(form);
201 }
这是来自 Google 的 chrome 网络调试器:
Request URL:https://www.example.com/php/download.php
Request Method:POST
Status Code:405 Not Allowed
Request Headersview source
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:172
Content-Type:multipart/form-data; boundary=----WebKitFormBoundaryNGHvOaUnlBV8ADWE
Host:www.example.com
Origin:https://www.example.com
Referer:https://www.example.com/index.php
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.79 Safari/537.4
Request Payload
------WebKitFormBoundaryNGHvOaUnlBV8ADWE
Content-Disposition: form-data; name="filename"
CentOS-6.3-x86_64-minimal-EFI.iso
------WebKitFormBoundaryNGHvOaUnlBV8ADWE--
Response Headersview source
Connection:keep-alive
Content-Length:568
Content-Type:text/html
Date:Fri, 30 Nov 2012 23:59:59 GMT
Keep-Alive:timeout=300
Server:nginx