我正在开发一个双语项目,index.php是一个获取接受语言并包含正确文件的脚本:如果语言是X,如果语言不是X,请包含/x/index.php,包含/ y / index.php文件。我的目录有这样的结构:
_
|-index.php
|
|-static
|
|- x - spanish.php
|
|_ y - english.php
我不知道如何配置yaml文件。我有下面的那个,但是在index.php包含page.php后它没有加载正确的php功能。
application: myapp
version: 1
runtime: php
api_version: 1
threadsafe: yes
handlers:
- url: /static
static_dir: static
- url: /(.+\.php)$
script: \1
- url: /
script: index.php
我不知道如何解决它,我会非常感谢任何帮助。
答案 0 :(得分:1)
如果URL类似于/y/js/file.js和/x/js/file.js,那么您只需要
- url: /y
static_dir: y
- url: /x
static_dir: x