My site is in html and all the files are placed now in httpdocs directory my urls are coming like .
http://Mysite.com/httpdocs/test.html and i need to show
http://Mysite.com/test.html
in my google custom search . I have used 301 redirection in web.config just like
<location path="httpdocs/test.html">
<system.webServer>
<httpRedirect enabled="true" destination="/test.html " exactDestination="true" childOnly="true" httpResponseStatus="Permanent" />
</system.webServer>
</location>
and its working for around 750 urls but i have 1500 urls and i think this is out of limit of web.config so please let me know some best suggestion or if i can write some rule in one line for it then it will be fine .