Drupal 7のページからこれらのタグを削除するにはどうすればよいですか?
<link rel="shortlink" href=" .... " />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="...." />更新:template.phpのコードがあり、ジェネレーターと標準タグが削除されます。
function program_html_head_alter(&$head_elements) {
  unset($head_elements['system_meta_generator']);
  foreach ($head_elements as $key => $element) {
    if (isset($element['#attributes']['rel']) && $element['#attributes']['rel'] == 'canonical') {
      unset($head_elements[$key]); 
    }
  }
}誰かがショートリンクタグを削除するために何かを追加できますか?
                
                1
              
                  すべてが良さそうに見えますが、なぜカノニカルを削除するのですか?これは実際に役立ちます。