Drupal 8
Para los nodos, debe usar hook_ENTITY_TYPE_view_alter
ya que ese es el lugar desde donde se agregaron inicialmente NodeViewController::view()
.
Y permítanme señalar que probablemente estén mejor simplemente redirigiendo todo su tráfico entrante a SSL de forma predeterminada: ¿Cómo hacer que todo el sitio sea 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;
}
}
};
}
Me acabo de enterar de que, al final, encontraremos todas las etiquetas de cabecera hook_preprocess_html
en la $variables['page']['#attached']
matriz para modificar.
.htaccess
configuración de Apache. Problema resuelto.