Using Windows Server 2013 - IIS 8.5
<rules>
//this works: www.domain.com/Securefiles
<rulename="Redirects
SecureFiles"enabled="true"stopProcessing="true"><matchurl="^/SecureFiles"
/> <actiontype="Rewrite"url="/SecureFiles/default.aspx"appendQueryString="false"
/> <conditionstrackAllCaptures="false"
/>
</rule>
//this does not: www.domain.com/Insurers/property
<rulename="Property
DataCall"enabled="true"stopProcessing="true">
<matchurl="^/Insurers/property"
/>
<actiontype="Rewrite"url="/Insurers/HurricaneandWindDatacall.aspx"appendQueryString="false"
/>
<conditionstrackAllCaptures="false"
/>
</rule>
</rules>
I get HTTP Error 404.0 - Not Found - Error Code0x80070002
but www.domain.com/Insurers/HurricaneandWindDatacall.aspx works fine....so that page is found... seems like IIS is looking forwww.domain.com/Insurers/property and cannot find this entry...
Thank you for your thoughts.
T