Different landing page for desktop vs mobile theme?

カスタマイズ → テーマ → モバイル → ヘッダーの以下のスクリプトと、あなたのスクリプトを結合しない理由はありますか?

<script>
  if (window.location.pathname == "/")
  {   window.location.href = "/latest";
  }
</script>

これにより、ユーザーがホームページにアクセスした際に /latest への初期リダイレクトを処理できます。

「いいね!」 1