简单的 URL 重写

发布于 2024-09-18 21:40:44 字数 366 浏览 2 评论 0原文

使用 http://www.urlrewriting.net/

我希望 /File1.aspx 成为 /File1

我已经尝试这样:

<add name="Rule1"
     virtualUrl="~/File1"
     desinationUrl="~/File1.aspx"
     rewriteUrlParameter="ExcludeFromClientQueryString"
     ignoreCase="true"
 />

我该怎么做?

Using http://www.urlrewriting.net/

I want /File1.aspx to be /File1

Ive been trying like this:

<add name="Rule1"
     virtualUrl="~/File1"
     desinationUrl="~/File1.aspx"
     rewriteUrlParameter="ExcludeFromClientQueryString"
     ignoreCase="true"
 />

How do i do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

臻嫒无言 2024-09-25 21:40:44

关键问题是您不再使用 .aspx,因此 IIS 不允许 asp.net 处理您的请求。您需要配置 IIS 以让这些请求通过 asp.net。

这因 IIS 版本而异,并且在 IIS 6

Key issue there is the fact that you are no longer using .aspx and thus IIS isn't letting asp.net process your request. You need to configure IIS to let these requests go through asp.net.

That varies per IIS version, and its harder in IIS 6

宫墨修音 2024-09-25 21:40:44

我最终使用了 IIS7 中的 URL 重写模块,而不是 Umbracos 内置模块。
http://learn.iis.net/page .aspx/460/using-the-url-rewrite-module/

I ended up using the URL Rewrite module in IIS7 instead of Umbracos built in module.
http://learn.iis.net/page.aspx/460/using-the-url-rewrite-module/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文