Hai,
Please help me to solve the below mention Issue.
My PHP google cloud application pages are not opening.
app.yaml
runtime: php55
api_version: 1
threadsafe: true
handlers:
- url: /phpinfo
script: phpinfo.php
- url: /clock/
static_dir: clock/
- url: /fonts/
static_dir: fonts/
- url: /js/
static_dir: js/
- url: /assets/
static_dir: assets/
- url: /ajax/
static_dir: ajax/
- url: /stylesheets/
static_dir: stylesheets/
- url: /.+
script: about.php
- url: /
static_files: static/test.html
upload: static/test.html
about.php page is working but when I am trying to open test.html is redirecting to about.php only
My code
<a href="test.html" target="_blank">TEST</a>
Please help me to solve this error.