使用 htaccess 添加 www 并支持 https
有很多使用 .htaccess 将 www 添加到 url 的代码示例,但它们通常仅限于使用 http。有没有人有一个例子来说明如何让它在这两种情况下工作?
There are a lot of code examples for using .htaccess to add www to a url but they are usually confined to using http. does anybody have an example of how to get it to work in both cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然:
第二个条件检查 HTTPS 环境变量(
on
或off
)是否设置为on
并且捕获随后可通过%1
使用的附加s
。如果不匹配,%1
只是一个空字符串。Sure:
The second condition checks if the HTTPS environment variable (either
on
oroff
) is set toon
and captures the appendeds
that is then available with%1
. If it doesn’t match,%1
is just an empty string.在 .htaccess 中使用此代码,它将添加 https 和 www
use this code in .htaccess and it will add both https and www