У меня есть правило перенаправления, которое я пытаюсь создать с помощью web.config.Я пытаюсь перенаправить
со страницы ниже:
https://example.org/content/content.php?PrintMe=0&PgName=gothedistance
на эту страницу:
https://example.org/gothedistance
Мое правило перенаправления URL выглядит следующим образом:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect" stopProcessing="true">
<match url="content.php$" />
<conditions>
<add input="{QUERY_STRING}" pattern="PrintMe=0&PgName=gothedistance" />
</conditions>
<action type="Redirect" url="gothedistance" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>