第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Asp.net URL 路由到第三方鏈接

Asp.net URL 路由到第三方鏈接

C#
互換的青春 2022-11-21 21:19:25
我有一個(gè) Asp.net 網(wǎng)站,需要實(shí)現(xiàn) url 別名功能http://myweb.net/sf --> 應(yīng)該路由到外部 url,比如 www.sales.comhttp://myweb.net/ts --> 應(yīng)該路由到 www.timesheet.com有沒有辦法在不在 IIS 中創(chuàng)建應(yīng)用程序(為每個(gè)快捷方式)的情況下實(shí)現(xiàn)這一點(diǎn)?使用 Web.config 或數(shù)據(jù)庫(kù)的解決方案將是理想的。
查看完整描述

2 回答

?
PIPIONE

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超9個(gè)贊

根據(jù)你的描述。我建議你可以使用 URL 重寫來使你輸入的 url 重定向到另一個(gè)。如果你想路由 http://myweb.net/sf 到 www.sales.com 和http://myweb.net/ts 到 www.timesheet.com,你可以直接在你的 web.config 文件中添加以下內(nèi)容:

 <system.webServer>

     <rewrite>

        <rules>

     <rule name="test1" stopProcessing="true">

                        <match url="(.*)" />

                        <conditions>

                            <add input="{REQUEST_URI}" pattern="(.*)/sf" />

                        </conditions>

                        <action type="Redirect" url="http://www.sales.com" redirectType="Found" />

                    </rule> 

 <rule name="test2" stopProcessing="true">

                    <match url="(.*)" />

                    <conditions>

                        <add input="{REQUEST_URI}" pattern="(.*)/ts" />

                    </conditions>

                    <action type="Redirect" url="http://www.timesheet.com" redirectType="Found" />


                </rule> 


        </rules>

    </rewrite>

    </system.webServer>


查看完整回答
反對(duì) 回復(fù) 2022-11-21
?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

是的,您可以在Web.Config文件中使用重寫


 <rewrite>

    <rules>

<rule name="CanonicalHostNameRule">

            <match url="(.*)" />

            <conditions>

                <add input="{HTTP_HOST}" pattern="^www\.sales\.com$" negate="true" />

            </conditions>

            <action type="Redirect" url="http://www.sales.com/{R:1}" />

        </rule>

    </rules>

</rewrite>

www.timesheet.com配置文件也一樣


注意:這段代碼是如果你想替換完整的 url {HTTP_HOST},你可以根據(jù)你接收到的條件做同樣的改變{HTTP_HOST}/{R:1},你設(shè)置正確的


查看完整回答
反對(duì) 回復(fù) 2022-11-21
  • 2 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)