Aspnet Redirect using location tag
- by Learner
<location path="/home/address?city="jcity" allowOverride="true">
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<httpRedirect enabled="true" httpResponseStatus="Permanent" exactDestination="true" destination="/home/jerseycity" />
</system.webServer>
</location>
I get an error since location tag can not use "?" tag. What is the best way to do this redirect?