2 回答

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>

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è)置正確的
- 2 回答
- 0 關(guān)注
- 124 瀏覽
添加回答
舉報(bào)