gpt4 book ai didi

silverstripe - 在 SilverStripe 管理中强制保存小写 URL

转载 作者:行者123 更新时间:2023-12-04 05:00:47 26 4
gpt4 key购买 nike

出于 SEO 的目的,我需要确保所有 URL 都保存为小写。

即使用户以大写形式输入固定链接,我如何强制 SilverStripe 管理员以小写形式保存 URL?

最佳答案

您可以在 Page 中执行此操作的 onBeforeWrite方法:

protected function onBeforeWrite() {
parent::onBeforeWrite(); //this is important!
$this->URLSegment = strtolower($this->URLSegment);
}

API docs

关于silverstripe - 在 SilverStripe 管理中强制保存小写 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33307460/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com