.htaccess 带有';的php google应用程序引擎应用程序yaml处理程序';

.htaccess 带有';的php google应用程序引擎应用程序yaml处理程序';,.htaccess,google-app-engine,app.yaml,.htaccess,Google App Engine,App.yaml,我有一个显示用户配置文件的php页面。名为profile_full.php的文件。 为了查看每个用户的个人资料,有这样一个链接:profile\u full.php?email=1用于用户1,profile\u full.php?email=2用于用户2等 我使用.htaccess文件来剪切url地址。其主要内容如下: # profile requests RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-

我有一个显示用户配置文件的php页面。名为profile_full.php的文件。 为了查看每个用户的个人资料,有这样一个链接:profile\u full.php?email=1用于用户1profile\u full.php?email=2用于用户2

我使用.htaccess文件来剪切url地址。其主要内容如下:

# profile requests
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /profile_full.php?email=$1 [L,QSA]
因此,对于url,如果type/1获取用户1的配置文件页面,如果type/2获取用户2的配置文件页面等。Tt在我的本地主机上使用XAMPP工作正常

我的问题是如何修复这个My app.yaml文件,使其与谷歌的应用程序引擎一起工作。这是我的app.yaml,它不工作:

application: testing-my-app1  
version: 1
runtime: php
api_version: 1
threadsafe: yes

handlers:


- url: /profile_full
  script: profile_full.php

知道如何修理我的处理器吗?错误消息get是url“/1”与任何处理程序都不匹配。

为什么有“worket24”?抱歉,刚刚删除了它。。。但仍然不工作可能的重复