Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am I not doing this correct?

 <urlrewrites>
        <rule name="Redirect/toHTML" stopProcessing="true">
          <match url="(.*)/(.*)" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_METHOD}" pattern="^GET$" />
          </conditions>
          <action type="Redirect" url="{R:1}.html{R:2}" appendQueryString="true" />
        </rule>
 </urlrewrites>

After as much research as I could do, I have come up with this to try and rewrite all trailing slashes with .html. To be honest though, I'm not even sure my web.config file is taking affect. Is there anything wrong with this rule?

share|improve this question
It always shows your page extension unless you made a MODREWRITE... You want to reverse something, just erase what you have in htaccess.. – Hamed Al-Khabaz Jan 3 at 23:41
There isn't an .htaccess file though. I am using an IIS6 Windows server which apparently does not use .htaccess. – Christian Jan 3 at 23:45
Oh I see. Here's the issue: – Christian Jan 3 at 23:45
We launched a new Wordpress site with 301 redirects(htaccess) on a new Linux server. Traffic hadn't regained after about 3 weeks so we panicked and relaunched the old site with the old .htm and .html extensions. Google has seen some of the 301 redirects and not others so some pagerank has switched over to the wordpress pages which now (when showing up in Google results) result in a 404. – Christian Jan 3 at 23:47
So we need to redirect the Wordpress pages (with the trailing /) to the old .htm and .html pages so google results don't give our users 404 errors – Christian Jan 3 at 23:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.