0

以下のリンクタグを複数の言語で使用しています。2 つの質問があります

  1. <link href="http://domain.com/" rel="canonical">URLに追加する必要がありますhttp://domain.com/?hl=enhttp://domain.com/?hl=es
  2. <html lang='en'>urlhttp://domain.com/?hl=en<html lang='es'>inに追加する必要がありhttp://domain.com/?hl=esますか?
<head>
  <!-- … -->
  <link href="http://domain.com/" hreflang="x-default" rel="alternate">
  <link href="http://domain.com/?hl=en" hreflang="en" rel="alternate">
  <link href="http://domain.com/?hl=es" hreflang="es" rel="alternate">
</head>
4

1 に答える 1

0
  1. URL http://domain.com/?hl=enまたはhttp://domain.com/?hl=esに < link href="http://domain.com/" rel="canonical" > を追加する必要があり ます?

どちらも使用できません:

<link href="http://domain.com/" rel="canonical"> in http://domain.com/
<link href="http://domain.com/?hl=en" rel="canonical"> in http://domain.com/?hl=en
<link href="http://domain.com/?hl=es" rel="canonical"> in http://domain.com/?hl=es
  1. URL http://domain.com/?hl=enまたは http://domain.com/?hl=esに < html lang='en' > を追加する必要がありますか?

http://domain.com/?hl=enに入れることはできますが、http://domain.com/?hl=esに入れることはできません

于 2015-05-19T08:23:11.250 に答える