Hi,
I tried to use URL Rewrite Module in my Server Windows 2008 SP 1 with IIS 7
I installed module,
I want to rewrite all .html extentions in my one aspx page, I write a regex which
^http://www.mydomain.com/en/(.*)html
to rewrite
http://www.mydomain.com/Content.aspx?kw={R:1}
I mean when I request page like this, http://www.mydomain.com/en/services.html, it has to be redirect http://www.mydomain.com/Context.aspx?kw=services
I think everything is correct but IIS still showed my html page, IIS doesn't realize this rule, it's shows directly the 404 page not found...
Do I have to add up anyhing on my web.config ? or any way to activate this Rewrite rule ? (rule is already activated)
Thank you for your help...