I have Asp.Net project. My project physical path structure as /htdocs/site1/...
I would like to change this url request as /site1/...
I have put below codes into to webconfig but it is not working. Currently IIS 8 rewrite extension installed on web server
<system.webServer>
<rewrite>
<rules>
<rule name="htdocs_remove">
<match url="/htdocs/site1/" />
<action type="Rewrite" url="/site1/" />
</rule>
</rules>
</rewrite>
</system.webServer>