views:

385

answers:

2

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.)

+2  A: 

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

<action type="Redirect" url="?" redirectType="Permanent" appendQueryString="false" />
lioil
Thank you! Let me know if you find better solution:)
TN
+2  A: 

This works better:

<action type="Redirect" url="." redirectType="Permanent" appendQueryString="false" />
+1 Ok. Thank you.
TN