时间:2021-07-01 10:21:17 帮助过:11人阅读
http://quercus.caucho.com/
版本当然最新的最好,因为原则上来说新版本对php支援程度更高,但是在自己测试的时候发现最新的4.0.25存在一点问题,于是换用4.0.18版本.
选择WAR格式的文件下载,利用Winrar解压,将WEB-INFlib的jar拷贝至GAE工程下的warWEB-INFlib目录
2.配置Quercus:
在appengine-web.xml中配置对php文件的支持:
- <static-files>
- <exclude path="/**.php" />
- static-files>
- <resource-files>
- <include path="/**.php" />
- resource-files>
在web.xml中添加一个servlet:
- <servlet>
- <servlet-name>Quercus Servletservlet-name>
- <servlet-class>com.caucho.quercus.servlet.GoogleQuercusServletservlet-class>
- servlet>
添加对php文件的映射:
- <servlet-mapping>
- <servlet-name>Quercus Servletservlet-name>
- <url-pattern>*.phpurl-pattern>
- servlet-mapping>
3.实现URL重写(通过UrlRewriteFilter实现):
下载UrlRewriteFilter,将urlrewritefilter-*.jar拷贝在工程的warWEB-INFlib目录下
在web.xml中添加URL过滤
- <filter>
- <filter-name>UrlRewriteFilterfilter-name>
- <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilterfilter-class>
- filter>
- <filter-mapping>
- <filter-name>UrlRewriteFilterfilter-name>
- <url-pattern>/*url-pattern>
- <dispatcher>REQUESTdispatcher>
- <dispatcher>FORWARDdispatcher>
- filter-mapping>
在工程的warWEB-INF目录下新建一个Url重写配置文件:urlrewrite.xml
- xml version="1.0" encoding="utf-8"?>
- "http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd">
- <urlrewrite>
- <rule enabled="true" match-type="regex">
- <note>UrlRewritenote>
- <condition type="request-filename" operator="notfile" name="notfile" next="and"/>
- <condition type="request-filename" operator="notdir" name="notdir" next="and"/>
- <from>/(.*)from>
- <to last="true" type="forward">/index.phpto>
- rule>
- urlrewrite>
这条规则就等同于.htaccess中的:
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
注意:这条规则可能会导致GAE本地管理http://localhost:8888/_ah/admin/失效,由于时间关系就不再修正.
4.测试:
在工程的war目录下新建一个index.php文件:
- php
- echo '<pre>';
- print_r($_SERVER);
- ?>
由于我已经将index.php设置为welcome文件,所以直接打开http://localhost:8888/
效果如图所示:
附上一些参考资料:
http://blog.caucho.com/2009/04/28/quercus-on-the-google-app-engine/
http://blog.caucho.com/2009/05/31/quercus-on-google-app-engine/
http://tuckey.org/urlrewrite/#documentation
PHPer们还在犹豫什么,赶紧上吧~
http://www.bkjia.com/PHPjc/445669.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/445669.htmlTechArticle1.下载quercus: http://quercus.caucho.com/ 版本当然最新的最好,因为原则上来说新版本对php支援程度更高,但是在自己测试的时候发现最新的4.0.25存在...