Apache的HTTP重定向到https和WWW非WWW

编程入门 行业动态 更新时间:2024-10-28 10:29:36
本文介绍了Apache的HTTP重定向到https和WWW非WWW的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

基本上我想要的是重定向人要求使用HTTPS而不是HTTP

basically what i want is redirect al request to use HTTPS instead of http

我已经在我的htaccess的,到目前为止,它的工作很大: code:

I have this in my htaccess so far and it worked great: Code:

<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) %{HTTP_HOST}%{REQUEST_URI} </ifModule>

高英时

今天有人注意到: www.mysite 重定向到并显示不安全的连接的thingie。

today someone noticed that when gowing to: www.mysite it redirects to and shows an unsecure connection thingie.

我的SSL的设置对非WWW域名:mydomain

My ssl is setup for non www domain: mydomain

所以,我需要确保所有站点的请求被发送到非WWW和https: 它工作正常,如果我把mysite重定向到 mysite

So i need to make sure all site requests are sent to non www and https: It works fine if i put mysite it redirects to mysite

但www.mysite它去HTTS://www.mysite并显示错误

but with www.mysite it goes to htts://www.mysite and shows the error

我需要什么添加到我的code重定向WWW非WWW,然后到SSL ?

what do i need to add to my code to redirect www to non www and then to ssl ?

推荐答案

您可以得到你从所需要的HTTP_HOST

You can get what you need from the HTTP_HOST

RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC] RewriteRule (.*) %1%{REQUEST_URI} [L,R=301]

此方式,将获得的主机始终没有子域名。

This way it will get the host always without the subdomain.

更多推荐

Apache的HTTP重定向到https和WWW非WWW

本文发布于:2023-11-01 19:37:38,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1550224.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:重定向   HTTP   Apache   https   WWW

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!