Configuring PHP in IIS with Tomcat
        Posted  
        
            by Silent Walker
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Silent Walker
        
        
        
        Published on 2010-05-31T05:22:40Z
        Indexed on 
            2010/05/31
            5:32 UTC
        
        
        Read the original article
        Hit count: 308
        
I have my Java site running under IIS 7. I need to install wordpress blog in it. I've installed and configured PHP in IIS. I have tested the PHP handler by creating a separate site, everything works fine, phpinfo() gives the desired output.
However, I'm having problem running the PHP files inside my Java web application. I've put my test PHP file inside a folder called blog. When I access this folder in the browser as /mysite/blog I get a 404 page from my Java application. When I try to invoke the php page directly, http://mysite/blog/index.php, I get an unprocessed php page.
I'm using isapi_handler for the reidrects. How do I tell my isapi_handler to ignore /blog folder? In my IIS handler mapping, *.php is mapped with Fast CGI. I'm not sure how to approach this problem and any help on this would be much appreciated.
Thanks in advance.
© Stack Overflow or respective owner