将我的网站索引页面重定向到我网站中的另一个页面?
Redirecting my websites index page to another page in my website?
我不知道如何将我的 索引页面 重定向到 另一个页面 ,就像您转到 www.example.com it redirects to www.example.com/home 时一样。我为此使用 GitHub 页 我该怎么做。
<meta charset="utf-8">
<title>Redirecting to https://example.com/</title>
<meta http-equiv="refresh" content="0; URL=https://www.example.com/home">
<link rel="canonical" href="https://www.example.com/home">
尝试将其放入 <head></head>
的 index.html 文件中。
我不知道如何将我的 索引页面 重定向到 另一个页面 ,就像您转到 www.example.com it redirects to www.example.com/home 时一样。我为此使用 GitHub 页 我该怎么做。
<meta charset="utf-8">
<title>Redirecting to https://example.com/</title>
<meta http-equiv="refresh" content="0; URL=https://www.example.com/home">
<link rel="canonical" href="https://www.example.com/home">
尝试将其放入 <head></head>
的 index.html 文件中。