我的网站在 html 中,所有文件现在都放在 httpdocs 目录中,我的网址就像 .
http://Mysite.com/httpdocs/test.html and i need to show
http://Mysite.com/test.html
在我的谷歌自定义搜索中。我在 web.config 中使用了 301 重定向,就像
<location path="httpdocs/test.html">
<system.webServer>
<httpRedirect enabled="true" destination="/test.html " exactDestination="true" childOnly="true" httpResponseStatus="Permanent" />
</system.webServer>
</location>
它适用于大约 750 个 url,但我有 1500 个 url,我认为这超出了 web.config 的限制,所以请让我知道一些最好的建议,或者如果我可以在一行中写一些规则,那就没问题了。