4
如何在drupal_goto路径中包含哈希(#)?
有没有办法在drupal_goto中包含#? 我想要这样的东西 function MYMODULE_preprocess_node(&$variables) { $node = $variables['node']; switch ($node->type) { case 'product': drupal_goto("products#".$node->nid); } }
12
7
6
redirection