出于搜索引擎优化的目的,我需要确保所有网址都保存为小写.
即使用户以大写形式键入固定链接,如何强制SilverStripe管理员以小写形式保存URL?
你可以用你Page的onBeforeWrite方法做到这一点:
protected function onBeforeWrite() {
parent::onBeforeWrite(); //this is important!
$this->URLSegment = strtolower($this->URLSegment);
}
Run Code Online (Sandbox Code Playgroud)
请参阅API文档
| 归档时间: |
|
| 查看次数: |
73 次 |
| 最近记录: |