wordpress servlet mapping not working
Posted
by Andrew
on Stack Overflow
See other posts from Stack Overflow
or by Andrew
Published on 2010-06-14T14:07:15Z
Indexed on
2010/06/14
14:12 UTC
Read the original article
Hit count: 251
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?
© Stack Overflow or respective owner