我需要将所有内容重定向到index.php
共享主机上的旧脚本已经跟随htacess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
</IfModule>
并且是的,我也很不知道如何在谷歌应用引擎中做到这一点(
答案 0 :(得分:3)
将以下内容添加到您的app.yaml中,这应该可以解决问题:)
handlers:
- url: /.*
script: index.php