None of the prior SO questions/answers lead me to a complete REST / WCF solution that removes the SVC extension from all aspects of the service.
Specifically I'm referring to servicename/help and servicename/wsdl ... but I know it's possible. Here is a working example of someone who is able to remove the WCF extension from the /help link. In addition he made it impossible to call the .svc directly with the extension. It appears that the WSDL is non existent (though I'd prefer to keep this)
How do I make my WCF REST application act more like that link?
Here is the IIS URL Rewrite that gets me part way there. It seems kind of hokey because if I don't have the first (of two) rewrites then the web service randomly gets borked.
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<rewrite>
<rules>
<rule name="test1.svc" stopProcessing="true" >
<match url="^test1.svc(.*)$"/>
</rule>
<rule name="test1" stopProcessing="true" >
<match url="^test1(.*)$"/>
<action type="Rewrite" url="/test1.svc{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>