I use this code in the web.config in one of the folders of my website to redirect all pages to the root (I won't to close this section).
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location>
<system.webServer>
<httpRedirect enabled="true" destination="http://www.learningfrenchinquebec.com/" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>
But I need to make a exception to this rule : I don't want my page "default.aspx" to be redirect. How can I do that?
Thank you in advance!