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]

分享到 :
相关推荐

如何设置Host1Plus虚拟主机DirectAdmin面板为中文

Host1Plus是一家英国主机商。目前已经推出中文官网http://cn.host...

什么是堡垒机和跳板机(跳板机和堡垒机的区别)

1、什么是堡垒机和跳板机堡垒机和跳板机是企业网络系统中的两个非常重要的设备。堡垒机[...

仿牌服务器工作原理是什么(仿牌服务器工作原理是什么意思)

如今很多国家对版权比较严格。因而。如果用户搭建仿牌网站而受到投诉时。网站就很容易被逼...

台湾服务器租用(台湾服务器租用多少钱一年)

台湾云服务器哪家好?一般来说。台湾的云服务器一般都要比国内的云服务器要好。适合那些需...

发表评论

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