由于 url 问题,我正在使用在本地而不是远程工作的 ajax 请求。看起来像 :
$.ajax({
type: "POST",
url: "../classes/file_to_process.php",
data: "my data"
success: function(msg){...}
})
我不断收到一条错误消息:"The requested URL /classes/file_to_process.php {without the double dots behind it} was not found on this server"
我的工作目录位于文件夹 /prod 中,其中有 index.php。/classes 文件夹与 /prod 处于同一级别。因此,要从 jquery 请求中获取它,我使用 ../classes/file_to_process
我通过使用 pwd 来获取远程服务器上的正确路径尝试了绝对路径,但我有相同的消息
有人有想法吗?