我对IIS中的重定向规则有疑问。用户可以通过某个网页进行编辑吗? 所以我想让用户编辑这条规则:
<rules>
<rule name="Redirect" enabled="true" stopProcessing="true">
<match url="(.*)"/>
<conditions>
<add input="{HTTP_HOST}" pattern="^Example.com"/>
</conditions>
<action type="Redirect" url="https://www.example.hr/{R:1}"/>
</rule>
</rules>
但不是从IIS,通过网页。如果它全部保存在数据库中会很好。 DbProvider只是部分好