url重写智能条件
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将最后一条规则替换为:
解析为 .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