У меня есть эти файлы: index.php
, filecallup.js
, image.png
, userprofile.php
, развернутые в моем xxx.appspot.com
.
Файл index.php
должен собирать некоторые переменные запроса URL и открыть userprofile.php
.
Моя проблема в том, что когда я нажимаю на ссылку (https://xxx.appspot.com/?user=peter), она по-прежнему указывает на индексный файл. php и не загружается userprofile.php
.
Я думаю, что это проблема с моим app.yaml
файлом, потому что он хорошо отображается на других серверах, кроме GAE.
Вот код app.yaml
:
#Use the PHP 7.3 runtime (BETA) by replacing "php72" below with "php73"
runtime: php72
#entrypoint: serve main.php
service: default
#threadsafe: true
handlers:
# Serve a directory as a static resource.
#- url: /stylesheets
# static_dir: stylesheets
# Serve images as static resources.
- url: /(.+\.(gif|png|jpg))$
static_files: \1
upload: .+\.(gif|png|jpg)$
- url: /(.+\.(htm|html|css|js))$
static_files: \1
upload: .+\.(htm|html|css|js)$
# Serve your app through a front controller at index.php or public/index.php.
- url: /mail.php
script: auto
Вот код index.php
:
<?php
some codes here`
header('Location:userprofile.php')
>?