在 web.sitemap 中使用 URL 通配符?
我的网站上有一个重写的 URL,用于搜索目的,例如:
/Search-Results/Keywords-Here.aspx
/Search-Results/abc.aspx
/Search-Results/Query.aspx
显然,这里的不同可能性是无穷无尽的。因此,有没有办法在我的 web.sitemap 中放入类似以下内容?:
/Search-Results/*.aspx
这样它就会映射任何内容。也许有正则表达式的方法可以做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,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.
根据您处理路由/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