在 web.sitemap 中使用 URL 通配符?

发布于 2024-11-03 17:58:59 字数 297 浏览 1 评论 0 原文

我的网站上有一个重写的 URL,用于搜索目的,例如:

/Search-Results/Keywords-Here.aspx
/Search-Results/abc.aspx
/Search-Results/Query.aspx

显然,这里的不同可能性是无穷无尽的。因此,有没有办法在我的 web.sitemap 中放入类似以下内容?:

/Search-Results/*.aspx

这样它就会映射任何内容。也许有正则表达式的方法可以做到这一点?

I have a rewritten URL on my site for search purposes such as:

/Search-Results/Keywords-Here.aspx
/Search-Results/abc.aspx
/Search-Results/Query.aspx

Obviously the different possibilites here are endless. Therefore, is there a way of putting something like the following in my web.sitemap?:

/Search-Results/*.aspx

This way it'll map anything. Perhaps theres a RegEx way of doing it?

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

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

发布评论

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

评论(2

作妖 2024-11-10 17:59:00

据我所知,asp.net 中的默认站点地图内容不能很好地处理 url 重写,但在 ASP.NET MVC 站点上工作后,我发现了这个 MVC 站点地图提供程序:

http://mvcsitemap.codeplex.com/

我认为您可能需要查看自定义站点地图提供商来了解您想要执行的操作,如果你正在使用网络表单。

To the best of my knowledge the default sitemap stuff in asp.net doesn't handle url rewriting very well but having worked on ASP.NET MVC sites I discovered this MVC site map provider:

http://mvcsitemap.codeplex.com/

I think it's likely that you will need to look at a custom site map provider for what you're trying to do if you're using WebForms.

早乙女 2024-11-10 17:59:00

根据您处理路由/url重写的方式,您可能只需要使用处理请求的实际文件的路径,因为我认为在内部应用程序可能会看到实际的文件路径而不是重写的url

Depending on how your handling the routing/url rewriting you may only need to use the path to the actual file that handles the requests as I think internally the application may see the actual file path rather than the rewritten url

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