如何强制 Kentico 默认生成小写 URL?
以下是如何修改 global.asax.cs 来实现此目的的示例,但这仅适用于版本 3.x,因为 global.asax.cs 源代码在版本 4.1 中有所不同: http://devnet.kentico.com/Forums.aspx?ForumID=19&Thread=00004982
所以我需要 4.1 的解决方案。
谢谢!
Here is an example how to modify global.asax.cs to achieve this, however this works only for version 3.x as the global.asax.cs source code is different in ver 4.1: http://devnet.kentico.com/Forums.aspx?ForumID=19&Thread=00004982
So I need a solution for 4.1.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 4.1 中,您可以运行此 SQL 脚本来更新 URL
update CMS_DocumentAlias set AliasURLPath = LOWER(AliasURLPath)
In 4.1 you can run this SQL script to update the URLs
update CMS_DocumentAlias set AliasURLPath = LOWER(AliasURLPath)