谷歌应用引擎将所有内容重定向到index.php


Google app engine redirect everything to index.php

我需要将所有内容重定向到索引.php

共享主机上的旧脚本遵循HTACESS

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
</IfModule>

是的,我太菜鸟了,无法弄清楚如何在谷歌应用程序引擎中做到这一点(

将以下内容添加到您的 app.yaml 中,这应该可以解决问题:)

handlers:
- url: /.*
  script: index.php