我的Drupal 7网站有问题。我想将所有匹配模式“catalog / something-0”的URL重定向到“catalog / something”。我还没有找到任何合适的模块。
我尝试了网页管理器重定向,分类重定向,匹配重定向。也许我错了。
非常感谢!
答案 0 :(得分:0)
在hook_preprocess_page()
文件中实施template.php
,并检查当前路径:例如:
function MY_THEME_preprocess_page(&$variables) {
if(current_path() == 'catalog/something-0') {
drupal_goto('catalog/something');
}
}