/ Published in: MySQL
URL: http://drupal.org/node/144904#comment-1135941
We wanted to change all /films/example style paths to /film/example (basically remove the 's').
Here was the query that worked:
Expand |
Embed | Plain Text
UPDATE url_alias SET dst = REPLACE(dst, 'films/', 'film/') WHERE dst LIKE 'films/%';
You need to login to post a comment.
