如何获取 ActionLink 将 / 附加到链接末尾
我的问题很简单,如何让 ActionLink 将 / 附加到链接末尾。出于某种原因,我们的 SEO 团队似乎认为这很有用? (有人吗?为什么?)目前 ActionLink 将链接呈现为有关优惠券的更多信息,但他们希望它是更多关于优惠券。有谁知道如何在不构建我自己的元素并使用 Url.Action 的情况下轻松做到这一点?
非常感谢,
克里斯
My question is simple, how to get an ActionLink to append an / to the end of a link. For some reason our SEO team seem to think this is useful? (anyone? why?) currently ActionLink renders the link as More about vouchers but they would like it to be More about vouchers. Does anyone know how to easily do this without constructing my own element and using Url.Action instead?
Many thanks,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为 UrlHelper 创建一个扩展方法并使用它而不是 Action()
然后您可以在代码中像这样使用它
但我真的建议您为每个操作实现一个扩展方法,因此您可以像这样参考:
You could make an extension method to UrlHelper and use that instead of Action()
Then you can use it like this from your code
But i'd really recommend you implement one extension method per action, so you can refer to then like this: