简单的 URL 重写
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关键问题是您不再使用 .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
我最终使用了 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/