Drupal 7 URL重定向 - 根据模式缩短

时间:2014-04-03 08:23:29

标签: url redirect design-patterns drupal drupal-7

我的Drupal 7网站有问题。我想将所有匹配模式“catalog / something-0”的URL重定向到“catalog / something”。我还没有找到任何合适的模块。

我尝试了网页管理器重定向,分类重定向,匹配重定向。也许我错了。

非常感谢!

1 个答案:

答案 0 :(得分:0)

hook_preprocess_page()文件中实施template.php,并检查当前路径:例如:

function MY_THEME_preprocess_page(&$variables) {
  if(current_path() == 'catalog/something-0') {
    drupal_goto('catalog/something');
  }
}