Question

I have tried:

1) I tried empty string first:

<action type="Redirect" url="" redirectType="Permanent" appendQueryString="false" />

Result:

HTTP 500.52 - URL Rewrite Module Error.
The substitution URL for the current action cannot be empty.

2) Maybe I should omit the url attribute:

<action type="Redirect" redirectType="Permanent" appendQueryString="false" />

Same result:

HTTP 500.52 - URL Rewrite Module Error.
The substitution URL for the current action cannot be empty.

3) What about the ASP.NET way:

<action type="Redirect" url="~" redirectType="Permanent" appendQueryString="false" />

Tries to redirect to {APP_ROOT}/~.

4) Last try:

<action type="Redirect" url="/" redirectType="Permanent" appendQueryString="false" />

As expected, it redirects to the root of the server...

I'd like to find some clean generic solution. (I cannot use some concrete /myCurrentAppPath.)

Was it helpful?

Solution

This works better:

<action type="Redirect" url="." redirectType="Permanent" appendQueryString="false" />

OTHER TIPS

For now try this, it's not clean but it works:

<action type="Redirect" url="?" redirectType="Permanent" appendQueryString="false" />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top