vote up 0 vote down star

Hi,

I am trying to use IIS7're URL Rewrite module to have my domain root page displayed as http://www.gulfdine.com instead of gulfdine.com/default.aspx.

To do this, I created a rule in the Rewrite module as shown below:

    <rule name="Default Document" stopProcessing="true">
      <match url="(.*)default.aspx" />
      <action type="Redirect" url="{R:1}" redirectType="Permanent" />
    </rule>

This works, and the page is correctly displayed. The problem is that postbacks no longer work! If I do a postback by clicking on a button, nothing happens!

Any ideas what might be happening?

flag
I don't think you want a redirect, I think you want a substitute. But I'm not sure how to do that this XML. – consultutah Aug 7 at 20:34

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.