wordpress servlet mapping not working
- by Andrew
I have the latest wordpress running in tomcat 6.0.26 virtual host with Quercus Servlet php servlet.
It works, except when I try to use perm links.
A url such as /index.php/my-page-name doesn't seem to ever hit the php server. It gets a browser error that request resource is not available. It's like it isn't matching the servlet urlmapping.
I'm using a standard method in the web.xml
<servlet-mapping>
<servlet-name>Quercus Servlet</servlet-name>
<url-pattern>*.php</url-pattern>
</servlet-mapping>
I see nothing showing up either in the tomcat logs when I use that url above.
Any ideas please?