You can make an extension for SiteTree and enable the onBeforeWrite function like this. This will make a change if they update the Title, not the URL:
class AutoURLSync extends Extension { public function onBeforeWrite() {
Removing "if" means that it always changes.
Add this to _config/config.yml to bind the extension:
SiteTree: extensions: - AutoURLSync
Barry source share