I have deployed my web app - a php app in google app engine. App.yaml code
runtime: php55
api_version: 1
#threadsafe: true
handlers:
- url: /
static_files: www/index.html
upload: www/index.html
- url: /mail
static_dir: www/mail
# Serve php scripts.
- url: /mail/.*
script: www/mail/mailsender_1.php
- url: /(.*)$
static_files: www/\1
upload: www/(.*)
However, when /mail/mailsender_1.php
is called from javascript - ajax call, it does not recognize mailsender_1.php
as php script. I have spent a complete day on debugging. Any help would be appreciated.