Google App Engine下载php而不是解释它

时间:2016-03-20 19:04:29

标签: php google-app-engine

这是我的.yaml

application: awshw
version: 1
module: default
runtime: php55
api_version: 1
handlers:
- url: /css
  static_dir: css

- url: /js
  static_dir: js

- url: /php/lookup.php
  script: lookup.php

- url: .*
  script: index.php

这是我的index.php中的ajax调用

$.ajax({
    url: "php/lookup.php",
    dataType: "text",
    data: {
        symbol: req.term
    },
    beforeSend: function(jqXHR, settings) {
        //document.write(settings.url);
    },
    success: function(result) {
        console.log(result);


    }
});

正常情况下,lookup.php在我想要从localhost运行时返回json,但是当在GAE上运行时,我得到了find.php的源代码作为ajax查询的结果。

1 个答案:

答案 0 :(得分:0)

抱歉没关系,我认为这与谷歌应用引擎没有正确更新它现在有效。