gpt4 book ai didi

asp.net - 基于 web.config 的 url 重写的绝对最小内容是什么?

转载 作者:行者123 更新时间:2023-12-02 13:51:49 25 4
gpt4 key购买 nike

我将在不久的将来在 IIS7 服务器上部署一个应用程序,并希望在 web.config 中使用每个应用程序的 URL 重写设置,但这不是 ASP.NET 应用程序,因此我不需要任何多余的东西。

为了运行我的应用程序并使用 URL 重写,我的 web.config 中需要的绝对最小值是多少?

最佳答案

经过大量谷歌搜索和翻阅各种文章后,我发现 this article ,这需要安装 URL Rewrite 模块(未与 IIS7 一起打包)。之后就很简单了。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule>
<match url="start\.html" />
<action type="Rewrite" url="finish.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

我很惊讶需要额外的下载——我认为这个功能应该是内置的(在 Win7x64 上测试)。哦,好吧,至少它有效。

关于asp.net - 基于 web.config 的 url 重写的绝对最小内容是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5356711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com