url重写智能条件

发布于 2024-11-28 08:11:38 字数 553 浏览 0 评论 0原文

我使用 URL Rewriter Intelligencia,

我有以下条件:

<rewrite url="~/music-bands" to="~/TheBand.aspx"/>
<rewrite url="~/gigs" to="~/gigs.aspx"/>
<rewrite url="~/music-cds-australia" to="~/CDS.aspx"/>
<rewrite url="~/new-music-videos" to="~/NewVideos.aspx"/>
<rewrite url="~/musicians-photo-gallery" to="~/Photo Gallery.aspx"/>
<rewrite url="~/blog" to="~/Blog.aspx"/>

但是它似乎用“博客”编写所有内容”,因此 blog.css 无法工作。 _images/blog/blogs.png 等也不会

知道我如何只能让它重写 www.mywebpage.com/blog 而没有别的?

I have using URL Rewriter Intelligencia,

I have teh following conditions:

<rewrite url="~/music-bands" to="~/TheBand.aspx"/>
<rewrite url="~/gigs" to="~/gigs.aspx"/>
<rewrite url="~/music-cds-australia" to="~/CDS.aspx"/>
<rewrite url="~/new-music-videos" to="~/NewVideos.aspx"/>
<rewrite url="~/musicians-photo-gallery" to="~/Photo Gallery.aspx"/>
<rewrite url="~/blog" to="~/Blog.aspx"/>

However it seems to be writing everything with "blog" in it" so blog.css wont work.
neither will _images/blog/blogs.png etc

Any idea how i can only make it rewrite www.mywebpage.com/blog and nothign else?

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

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

发布评论

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

评论(1

酒废 2024-12-05 08:11:38

将最后一条规则替换为:

解析为 .NET 时的美元符号 ($) RegularExpression 表示字符串的结尾;这将阻止 /blog.css 满足上述规则

Replace the last rule with: <rewrite url="~/blog$" to="~/Blog.aspx" />

The dollar sign ($) when parsed as a .NET RegularExpresion denotes the end of the string; this will prevent /blog.css from hitting the rule above

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