Hi,
I'm trying to set up some rewrite rules which refer to pages within Websphere Application Server.
For example,
<rule name="metalprices">
<match url="metalprices/">
<action type="Rewrite" url="/mp/prices.jsp" />
</rule>
When I go to http://xxx.xxx.xxx/metalprices/ in the web browser, it reports a 404. In the detailed information, it shows the correct Requested URL as http://xxx.xxx.xxx/mp/prices.jsp, but it is trying to go to a physical path (as defined by the default site) of c:\inetpub\wwwroot\mp\prices.jsp.
This path does not exist, as it should be going through to Websphere Application Server, which has a plugin set up within the ISAPI filters.
If you type http://xxx.xxx.xxx/mp/prices.jsp directly into the browser, the page does display correctly.
Thanks in advance
Dave