这里有一些关于Resin / Quercus用于Wordpress的帖子。我只想确认一旦安装了Quercus,Wordpress将按原样工作,带有.php文件扩展名吗?所有常见的URL重写等也会在永久链接中起作用?或者我们需要做一些手动和额外的调整吗? (http://caucho.com/resin-4.0/admin/http-rewrite.xtp)
谢谢!
答案 0 :(得分:1)
是的,wordpress可以为我们使用Resin 4.0.x而无需修改。虽然,您可能需要在WEB-INF / resin-web.xml中使用一些重写规则来进行“漂亮”的URL映射。
我们看起来像是:
<web-app xmlns="http://caucho.com/ns/resin"
xmlns:resin="urn:java:com.caucho.resin">
<!-- pass through all actual files to the standard dispatch -->
<resin:Dispatch regexp="\.">
<resin:IfFileExists/>
</resin:Dispatch>
<!-- pass through all php files to the standard dispatch -->
<resin:Dispatch regexp="\.php"/>
<!-- rewrite everything else to be /index.php/foo... -->
<resin:Forward regexp="^" target="/index.php"/>
</web-app>