IIS 重写以向每个请求添加查询变量

IIS 重写以向每个请求添加查询变量

我对配置 IIS 几乎一无所知,但被分配了一项任务,向通过用作 Web 代理的 IIS 服务器发出的每个请求添加查询变量。

我们查找任何 URL,其中域后的第一个路径段是固定字符串,例如 /bongo/,并将其重定向到后端服务器。我已让它执行重定向,但我很确定我在以下配置中有很多我不需要的垃圾,这是我从另一个答案中得到的。

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <system.webServer> 
        <rewrite> 
            <rules> 
                <rule name="Route the requests for bongo Player" stopProcessing="true"> 
                    <match url="^bongo/(.*)" /> 
                    <conditions> 
                        <add input="{CACHE_URL}" pattern="^(https?)://" /> 
                    </conditions> 
                    <action type="Rewrite" url="https://bongo.fse.companyinc.com/bongo/{R:1}" /> 
                    <serverVariables> 
                        <set name="HTTP_ACCEPT_ENCODING" value="" /> 
                    </serverVariables> 
                </rule> 
            </rules> 
            <outboundRules> 
                <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1"> 
                    <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^http(s)?://bongo.fse.companyinc.com/bongo/(.*)" /> 
                    <action type="Rewrite" value="/{R:2}" /> 
                </rule> 
                <rule name="RewriteRelativePaths" preCondition="ResponseIsHtml1"> 
                    <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^/bongo/(.*)" negate="false" /> 
                    <action type="Rewrite" value="/{R:1}" /> 
                </rule> 
                <preConditions> 
                    <preCondition name="ResponseIsHtml1"> 
                        <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" /> 
                    </preCondition> 
                </preConditions> 
            </outboundRules> 
        </rewrite>
        <tracing>
            <traceFailedRequests>
                <add path="*">
                    <traceAreas>
                        <add provider="ASP" verbosity="Verbose" />
                        <add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" />
                        <add provider="ISAPI Extension" verbosity="Verbose" />
                        <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,WebSocket,Rewrite,RequestRouting" verbosity="Verbose" />
                    </traceAreas>
                    <failureDefinitions timeTaken="00:00:30" statusCodes="200-299,300-399,400-499,500-599" verbosity="Warning" />
                </add>
            </traceFailedRequests>
        </tracing> 
    </system.webServer> 
</configuration>

1)我甚至不确定我是否需要出站规则。

2) 我遇到的主要问题是,无论是否存在现有查询变量,我都希望始终附加查询变量。我尝试了太多配置,无法在此列出,但我似乎无法始终让它在代理时附加变量。此外,我认为需要某种条件,如果已有参数或要添加的参数是唯一的参数,则执行不同的操作。

我将非常感激任何 IIS 专家的帮助。

答案1

实际上,这个问题已经解决了。这很容易。问题是我们假设 IIS 会附加现有的查询字符串,因此我们尝试:

<action type="Rewrite" url="https://bingo.lms.bingoinc.com/bingo/{R:1}&abc=asd23242" /> 

事实上,它足够智能,可以检查是否已经存在“?”并将原始查询变量添加到末尾,因此它可以工作:

<action type="Rewrite" url="bingo.lms.bingoinc.com/bingo{R:1}?abc=asd23242" />

相关内容