我应该如何为部署到gcp的应用程序引擎的php应用程序编写app.yaml?

时间:2019-10-01 13:51:06

标签: php google-app-engine deployment google-cloud-platform yaml

我正在将php应用程序部署到GCP的应用程序引擎,但无法使app.yaml配置正常工作。

该应用具有以下目录结构:

index.php
/sistema
    /js
    /images
    /css
    index.php
    login.php
    otherpage.php
    ...

“ sistemas”文件夹下的页面出现问题。并且还希望访问那些在网址中没有“ .php”的页面。

我尝试了许多处理程序,但没有一个能按我的意愿工作。

运行时:php55         线程安全:是         api_version:1

    handlers:
    - url: /sistema/css/*
      static_dir: sistema/css
    - url: /sistema/js/*
      static_dir: sistema/js
    - url: /sistema/fonts/*
      static_dir: sistema/fonts
    - url: /sistema/images/*
      static_dir: sistema/images
    # Serve php scripts.
    - url: /(.+\.php)$
      script: \1
    - url: /
      script: index.php

0 个答案:

没有答案