这里有一些关于 Resin/Quercus 用于 Wordpress 的主题。我只是想确认,一旦安装了 Quercus,Wordpress 将按原样工作,带有 .php 文件扩展名等等?所有常见的 URL 重写等也可以在永久链接中使用吗?还是我们需要做一些手动和额外的调整?(http://caucho.com/resin-4.0/admin/http-rewrite.xtp)
谢谢!
是的,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>