How to do IIS 301 redirect

Here is an example that may help

I think it will be something like

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>

      <rewrite>
        <rules>

          <rule name="WorkForceProductivitySolutions" stopProcessing="true">
            <match url="/workForce_Productivity_Solutions.htm" />
            <action type="Permanent" url="/SupplyChainSolutions.html" />
          </rule>
        </rules>
      </rewrite>

    </system.webServer>
</configuration>
1 Like