Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IIS 7 url rewrite help

Status
Not open for further replies.

BlindPete

Programmer
Jul 5, 2000
711
1
0
US
Can anyone point me to creating url rewrite
from:
to
In II7 I've created the rewrite but it never seems to fire instead I get
HTTP Error 500.24 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

We have multiple applications on this server.

Match URL: matches the pattern
Using: Wild Cards
Pattern: Ignore Case: CHECKED
Action: Redirect
Redirect URL: Append Query String: CHECKED
Redirection Type: Permanent

-Pete
 
here is more info
Code:
        <rewrite>
            <globalRules>
                <rule name="SSRS redirect" patternSyntax="Wildcard" stopProcessing="true">
                    <match url="[URL unfurl="true"]http://localhost/Pages/Reporting.aspx*"[/URL] />
                    <action type="Rewrite" url="[URL unfurl="true"]http://localhost:86/Pages/Reporting.aspx"[/URL] />
                </rule>
            </globalRules>
        </rewrite>

-Pete
 
You would probably be better off posting here: forum41.

Also, if you are using ASP.NET the appropriate forum is forum855. This is the Classic ASP forum.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top