4

For SEO purposes I need to be sure all URLs are saved as lowercase.

How can I force the SilverStripe admin to save the URL in lowercase even if the user types the permalink in uppercase?

Turnerj
  • 4,258
  • 5
  • 35
  • 52
open-ecommerce.org
  • 1,763
  • 1
  • 25
  • 41

1 Answers1

6

You can do this in your Page's onBeforeWrite method:

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

See API docs

wmk
  • 4,598
  • 1
  • 20
  • 37