Knowledge: Redirect SyseroCTX to Root Location URLRewrite
Back
Knowledge
Title*Redirect SyseroCTX to Root Location URLRewrite
ManualServer Setup
Created07/03/2025
DetailThis article is to help people migrate from the old /SyseroCTX root structure to /
URL Rewrite IIS package needs installing.
The below goes in sysero.webServer section of web.config
<rewrite>
<rules>
<rule name="Legacy SyseroCTX" stopProcessing="true">
<match url=".*SyseroCTX/(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="sysero.example.com" />
<add input="{URL}" pattern="syseroctxdataservice.asmx" negate="true" />
</conditions>
<action type="Redirect" url="http://sysero.example.com/{R:1}" />
</rule>
</rules>
</rewrite>
Additional Manual Locations