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

时间:2013-10-18 13:35:14

标签: php .htaccess google-app-engine mod-rewrite redirect

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

共享主机上的旧脚本已经跟随htacess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1
</IfModule>

并且是的,我也很不知道如何在谷歌应用引擎中做到这一点(

1 个答案:

答案 0 :(得分:3)

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

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