Итак, у меня есть site.com/blog/12/12/articleNames, и я хочу вместо этого перенаправить все на site.com/articles/12/12/articleNames.
так что в папке моего блога это есть в моем файле web.config
<rewrite>
<rules>
<rule name="articleMove" stopProcessing="true">
<match url="^blog/([0-9]+)/([0-9]+)/([_0-9a-z-])/" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" />
</conditions>
<action type="Rewrite" url="/articles/{R:1}/{R:2}/{R:3}" />
</rule>
</rules>
</rewrite>
Тем не менее, я все еще продолжаю получать страницу 404.