没有 htaccess 的雅虎虚拟主机 301 重定向

发布于 2024-12-10 06:17:04 字数 278 浏览 0 评论 0原文

是否有其他可能的方法将非 www 域重定向到 www 域(从 http://example.com 到 < a href="http://www.example.com" rel="nofollow">http://www.example.com)。我注册了雅虎电子商务解决方案,并且正在使用带有商店标签的自定义模板。雅虎不允许将 htaccess 上传到他们的服务器,并告诉我不可能从非 www 域重定向到 www 域,这是荒谬的。

Is there any other possible ways to redirect non-www domain to with www domain (from http://example.com to http://www.example.com). I signed up for yahoo ecommerce solution and i am using a custom template with store tags. Yahoo does not allow htaccess to be uploaded to their servers and informed me that it is not possible to do a redirect from non-www domain to www domain, which is absurd.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

相思故 2024-12-17 06:17:04

如果您管理域的 DNS 区域,您可以尝试 CNAME www 到非 www IP(我不确定结果是否有用)

If you manage DNS-zone for domain, you can try CNAME www to non-www IP (I can't be sure is useful results)

江南烟雨〆相思醉 2024-12-17 06:17:04

您必须创建一个“HTML 重定向”。这是客户端重定向,告诉浏览器请求另一个页面。

要创建 HTML 重定向页面,您可以使用 HTML 元标记以及“http-equiv”和“content”属性。

要创建 HTML 重定向,请将以下代码放置在文档的 head 标记之间。

<meta http-equiv="Refresh" content="5; url=http://www.hostname.com/index.php">

在上面的示例中,页面将在 5 秒后重定向到指定页面(如“content”属性中所示)。

您还可以使用 JavaScript 重定向到另一个网页

You have to create an "HTML redirect". This is a client-side redirection and tells the browser to request another page.

To create an HTML redirect page, you use the HTML meta tag, along with the 'http-equiv' and 'content' attributes.

To create an HTML redirect, place the following code between the document's head tags.

<meta http-equiv="Refresh" content="5; url=http://www.hostname.com/index.php">

In the above example, the page will redirect to the specified page in 5 seconds (as indicated in the 'content' attribute).

You can also use JavaScript to redirect to another web page

哥,最终变帅啦 2024-12-17 06:17:04

JavaScript 可以吗?

if (!/^www\./.test(document.domain)) {
  top.location.replace('www.' + document.domain);
}

Will javascript do?

if (!/^www\./.test(document.domain)) {
  top.location.replace('www.' + document.domain);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文