1

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

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

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

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

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

是的,我太菜鸟了,无法在谷歌应用引擎中解决这个问题(

4

1 回答 1

3

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

handlers:
- url: /.*
  script: index.php
于 2013-10-18T13:46:21.107 回答