跳转到主要内容
你行网

Main navigation

  • 首页
  • Drupal
  • 编程与开发
  • 数据库
  • 操作系统与应用
  • 服务器与运维
  • 社区
User account menu
  • 登录

面包屑

  1. 首页

Apache 使用 mod_rewrite 将 HTTP 重定向到 HTTPS

由 hrs, 12 三月, 2022

Apache 的mod_rewrite可以很容易地要求在您的站点上使用 SSL,并可以轻松地重定向在键入 URL 时忘记添加 https 的用户。使用 Apache 将 http 重定向到 https 将确保您的网站(或其中的一部分)只能由使用 SSL 的客户访问。这比使用 SSLRequireSSL 更好,因为用户经常忘记输入 https 并且会被自动重定向。

在设置从 http 到 https 的 Apache 重定向之前,您需要执行以下操作:

  • 确保您的 SSL 证书已成功安装,以便您可以访问 https://www.yoursite.com(有关更多信息,请参阅我们的Apache SSL 安装说明)
  • 确保在 Apache 中启用了 mod_rewrite

现在您只需要编辑您的 httpd.conf 文件或指定您的虚拟主机的文件并添加这些行以将 http 重定向到 https:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]

 

在许多情况下,您还可以将这些行添加到您要将 http 重定向到 https 的文件夹中名为 .htaccess 的文件中。

现在,当访问者键入 http://www.yoursite.com/mypage.htm 时,服务器会自动将 http 重定向到 https,以便他们转到 https://www.yoursite.com/mypage.htm

注意:您还可以通过在配置文件或 .htaccess 文件中使用它来将单个页面从 http 重定向到 Apache 中的 http:

RewriteEngine On
RewriteRule ^apache-redirect-http-to-https\.html$ https://www.yoursite.com/apache-redirect-http-to-https.html [R=301,L]

 

  • 登录或注册以发表评论
  • 100 次浏览
内容类型分类
服务器与运维
文章归类
Linux

文章标签

  • apache

评论

最新文章

  • 内容审核通知 content_moderation_notifications 模块简介
  • 调度程序 scheduler 模块简介
  • 工作流当中的草稿,已发布,很好理解,已归档是怎么理解。
  • 你行网 https://www.dwoke.com seo 关键词
  • brew 是什么命令
  • drupal 9 或 drpal 10 国内内容分享模块 Will Nice social share
  • Views Slideshow - Views Vanilla JavaScript Slideshow (VVJS) 简介和安装方法
  • drupal 11 安装statistics 统计模块
  • drupal11 扩展中找不到Statistics模块
  • drupal11 设置中的“总结摘要”和“切边的” 有什么区别

标签云

adsenseAIapacheaptbadblocksbreadcrumbbrewcentoscertbotckeditorcommandcomposercookiecsharpCSScurlC语言DDEVdiffdnsdockerDreamweaverDrupaldrupal 7drupal 8drupal 9drupal10drupal 11drushExcelfirewalldfirmwareflameshotformgimpgitgzipHTMLHTML5httpdhttp验证inputipjavaJavaScriptJavaSrciptkernelKVMLinuxmavenmbstringmod_expires 模块Mysqlnerdtreenetstatnetworknginxnpmpasswordphpphpmyadminphp扩展RFIDRSSselinuxSEOsharesimple_adsensesshsslStatisticssuperfishsurroundtagcloudstitleubuntuuploadprogressvimVPNVUEWireGuardwpsxdebugyoutubeyumzip主题(theme)二进制五笔分类术语压缩解压哈希值声音字段密码工作流快捷键摄影权限果树种植标签优化模块(module)源地址版本号电子秤电脑基础电脑技巧短信验证端口简介算法网站备份网站运营翻译英语表单视图(views)计算机基础赚钱超五类线网线邮件验证重定向重定向,301错误颜色

相关文章

  • linux-firmware 是什么,有哪些作用?
  • journalctl 的使用和简介
  • linux 网络检查命令
  • 在drupal 使用composer一次性安装多个模块
  • composer update 命令的参数列表
  • Composer 的常用命令
  • diff 是什么?
  • 如何在 CentOS 7 上使用 Certbot 独立模式检索 Let's Encrypt SSL 证书
  • certbot 安装免费ssl 证书
  • HTTP Basic Authentication HTTP 基本身份验证概述
RSS源

关于我们

  • 你行网简介
  • 关于我们
  • 版权声明

网站相关

  • 社区论坛
  • 网址导航
  • 网站地图
  • 联系我们

友情链接

  • 英文学习

友情链接2

  • drupal 大学
  • 水滴间
  • 爱码网
  • Apache

友情链接3

  • MySQL
  • php
  • drupalcode

友情链接4

  • Drupal 中国
  • Drupal 老葛
  • 宁浩网
  • drupal 台湾
Copyright © 2019 - 2021 你行网 版权所有  粤ICP备19072650号-1