Как я могу выполнить перенаправление 301 с помощью этого шаблона: / ([^ /] +) (? = / [^ /] + /? $) В моем решении .NET для перенаправления / en / solutions / instance в / en / instance в моем файле web.config
PS: Я новичок в .NET и IIS, поэтому я спрашиваю
<system.webServer>
<rewrite>
<rules>
<rule name="regex redirect" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="\/([^\/]+)(?=\/[^\/]+\/?$)" />
</conditions>
<action type="Redirect" url="/en/solutions/exemple"
redirectType="Permanent" />
</rule>
</rules>
</rewrite>
Спасибо