如何使网站名称中没有 www 前缀的网站正常工作?
通常,我在输入 URL 时会删除 www。坦率地说,我访问的一个重要网站不支持这种短网址,我想请他们修复它。
解决方案是配置文件修复吗?或者是否需要特殊的提供商相关服务?
Normally, I drop www when typing in the URL. Frankly, one important site I visit, don't support such shorted URL and I want to ask them to fix it.
Is a solution a configfile fix? Or does it require a special provider-related service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果他们启用了重写引擎,他们可以使用此规则创建
.htaccess
文件这样每个访问 http: //example.com 自动重定向到 http://www.example.com。
If they have Rewrite Engine enabled, they can create
.htaccess
file with this ruleThis way everyone who comes to http://example.com is redirected to http://www.example.com automatically.
它是虚拟主机配置或 DNS C 名称,具体取决于他们的配置方式。
建议他们为其 URL 的非“www”版本创建一个 C NAME。
It's a virtual host configuration or a DNS C name, depending on how they have it configured.
Suggest they create a C NAME for the non-"www" version of their URL.
如果他们有权访问 VirtualHost 容器,那么他们只需添加 ServerAlias 指令即可:
这不需要重定向,因此对用户来说速度会更快。
If they have access to the VirtualHost container then they can just add the ServerAlias directive:
This will require no redirection so it will be faster to the user.