apache设置自动将http跳转到https的方法

apache设置自动将http跳转到https的方法

扫码添加渲大师小管家,免费领取渲染插件、素材、模型、教程合集大礼包!

复制代码 代码如下:
<Directory "/opt/fivetrees">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All #这里原先是None要改为All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>

首先。在网站根目录下创建.htaccess文件。在最下面添加写入如下语句:

复制代码 代码如下:
RewriteEngine on
RewriteBase / #我这行是没有配置
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

分享到 :
相关推荐

租用美国大带宽服务器搭建视频网站(美国视频服务器出租)

现在越来越多的站长挑选美国服务器租借。美国服务器在中国的市场占有率也越来越高。除了企...

日本vps好用在哪(日本vps好用在哪里)

日本vps好用在哪。为何那么多人选择?日本vps距离中国大陆非常近。速度快。同时日本...

香港裸金属服务器有哪些优缺点(香港裸金属服务器有哪些优缺点和特点)

香港裸金属服务器的优点:1。高性能裸金属服务器不需要虚拟化层。可以直接运行应用程[&...

租用海外服务器的IP被封原因都有哪些(国外服务器ip被国内封禁)

海外服务器一直以来凭借价格便宜。配置高等因素。在国内受到众多用户的青睐。所以近些年租...

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注