没有 htaccess 的雅虎虚拟主机 301 重定向
是否有其他可能的方法将非 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您管理域的 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)
您必须创建一个“HTML 重定向”。这是客户端重定向,告诉浏览器请求另一个页面。
要创建 HTML 重定向页面,您可以使用 HTML 元标记以及“http-equiv”和“content”属性。
要创建 HTML 重定向,请将以下代码放置在文档的 head 标记之间。
在上面的示例中,页面将在 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.
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
JavaScript 可以吗?
Will javascript do?