如何通过模式匹配为 Drupal 创建 URL 别名
How can I create URL Alias for Drupal by pattern matching
最初我有像 www.astral.com/user/1 这样的 url。我能够通过使用 [user:cas] 的模式匹配将其转换为 www.astral.com/casuername,其中 casuername 来自 [user:cas]
但是,我也有 www.astral.com/user/1/publications,我想将其转换为 www.astral.com/user/1/publications 为 www.astral.com/casuername/出版物。
有什么方法可以达到我想要的效果吗?
谢谢。
经过一番搜索,我发现,我的objective可以使用从https://www.drupal.org/project/subpathauto
获得的子路径自动模块来实现
使用pathauto模块
https://www.drupal.org/project/pathauto
为网址创建模式
最初我有像 www.astral.com/user/1 这样的 url。我能够通过使用 [user:cas] 的模式匹配将其转换为 www.astral.com/casuername,其中 casuername 来自 [user:cas]
但是,我也有 www.astral.com/user/1/publications,我想将其转换为 www.astral.com/user/1/publications 为 www.astral.com/casuername/出版物。
有什么方法可以达到我想要的效果吗?
谢谢。
经过一番搜索,我发现,我的objective可以使用从https://www.drupal.org/project/subpathauto
获得的子路径自动模块来实现使用pathauto模块 https://www.drupal.org/project/pathauto 为网址创建模式