Drupal 8
Para nós, você precisa usar, hook_ENTITY_TYPE_view_alter
pois é o local de onde eles foram adicionados inicialmente NodeViewController::view()
.
E deixe-me observar que você provavelmente está melhor redirecionando todo o tráfego de entrada para SSL por padrão: como simplesmente tornar o site inteiro HTTPS?
/**
* Implements hook_ENTITY_TYPE_view_alter().
*/
function MYMODULE_node_view_alter(array &$build, Drupal\Core\Entity\EntityInterface $entity, \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display) {
if (isset($build['#attached']['html_head_link'])) {
foreach ($build['#attached']['html_head_link'] as $key => $head) {
if ((isset($head[0]['rel']) ? $head[0]['rel'] : FALSE) == 'canonical') {
$url = \Drupal\Core\Url::fromRoute('<current>', [], ['absolute' => 'true'])
->toString();
$url = str_replace('https://', 'http://', $url);
$build['#attached']['html_head_link'][$key][0]['href'] = $url;
}
}
};
}
Acabei de descobrir que, no final, encontraremos todas as tags de cabeçalho hook_preprocess_html
na $variables['page']['#attached']
matriz a serem alteradas.
.htaccess
ou configuração do Apache. Problema resolvido.