`
lxs647
  • 浏览: 523149 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Set apache redirect from http to https

 
阅读更多

进入/etc/httpd/conf/目录:

 

编辑httpd.conf:

 

键盘shift + g 跳至文件末尾:

添加如下语句:

 

 

<VirtualHost *:80>

  RewriteEngine On

  RewriteCond %{HTTPS} off

  RewriteCond %{HTTPS} ^test.testserver.com$

  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

</VirtualHost>

 

也可以试试:

 

<VirtualHost *:80>

  RewriteEngine On

  RewriteCond %{SERVER_PORT} ^80$

  RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

</VirtualHost>

 

 

保存退出之后,

 

/etc/init.d/httpd restart

 

重启http server。

分享到:
评论

相关推荐

    php.ini-development

    You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; encoding will be transparently converted to the ...

    使用URL Rewrite实现网站的伪静态实例(urlrewritefilter-4.0.3)

    - 在`urlrewrite.xml`中,你可以定义一系列规则,如`&lt;rule&gt;`标签,每个规则包含`&lt;from&gt;`(匹配原始URL)和`&lt;to&gt;`(转换后的URL)等属性。 3. **基本规则类型**: - `Rewrite`: 这是最基本的URL重写,将一个URL...

    Linux服务器下Nginx与Apache共存的实现方法分析

    在Linux服务器环境中,有时我们需要在同一台服务器上同时运行Nginx和Apache,以利用它们各自的优势。Nginx以其高性能的静态文件处理能力和反向代理功能而著名,而Apache则在处理动态内容和模块化配置方面表现出色。...

    spring 最新框架jar

    [Git]: http://help.github.com/set-up-git-redirect [JDK8 build]: http://www.oracle.com/technetwork/java/javase/downloads [Gradle build and release FAQ]: ...

    .htaccess

    | 百度空间 | 登录 广告停放提高网站流量,centos学习 主页博客相册|个人档案 查看文章 .htaccess怎么用2007-05-16 14:04(文章来源)http://www.dnpark.com.cn/news/mm/www/1179329504375ZKlMSgYr.html&lt;br&gt;&lt;br&gt;...

    Django 1.1 Testing and Debugging.pdf

    Configuring Apache to serve static files 391 Testing multithreaded behavior 396 Generating load with siege 397 Load testing the results recording code 399 Fixing the results recording code 404 ...

    Practical Mod Perl

    Transition from mod_cgi Scripts to Apache Handlers Section 6.8. Loading and Reloading Modules Section 6.9. Handling the "User Pressed Stop Button" Case Section 6.10. Handling Server ...

    urlrewritefilter 例子

    URLRewriteFilter是Apache开源组织Tuckey提供的一个过滤器,它可以方便地实现URL重写功能。本文将详细介绍URLRewriteFilter的使用方法,并通过具体示例帮助读者理解其工作原理。 首先,URLRewriteFilter基于Java ...

    Servlets和JSP核心技术 卷2(英文版) 第一部分

    Developing Applications with Apache Ant Section A.1. Summarizing the Benefits of Ant Section A.2. Installing and Setting Up Ant Section A.3. Creating an Ant Project Section A.4. Reviewing Common ...

    Servlets和JSP核心技术 卷2(英文版) 第二部分

    Developing Applications with Apache Ant Section A.1. Summarizing the Benefits of Ant Section A.2. Installing and Setting Up Ant Section A.3. Creating an Ant Project Section A.4. Reviewing Common ...

    awesome-htaccess:也许是理想的.htaccess文件

    Header set Cache-Control "max-age=2592000, public" ExpiresActive On ExpiresDefault "access plus 1 month" ``` 总结来说,一个理想的.htaccess文件应具备良好的权限控制、URL重写规则、错误页面定制、资源...

    操作系统(内存管理)

    *just set the beginning to be last_valid_address */ managed_memory_start = last_valid_address; /* Okay, we're initialized and ready to go */ has_initialized = 1; } 现在,为了完全地管理内存...

    内存管理内存管理内存管理

    *just set the beginning to be last_valid_address */ managed_memory_start = last_valid_address; /* Okay, we're initialized and ready to go */ has_initialized = 1; } 现在,为了完全地管理内存,...

    JAVA笔试题

    redirect`。因为转发需要服务器内部的支持,而资源文件`pageC.jsp`可能位于不同的Web服务上,因此只能使用重定向。 #### 9. 数据库操作JDBC代码片段填写 ```java // 加载驱动程序com.mysql.jdbc.Driver Class.for...

    JSTL标签-讲解及实例

    &lt;c:redirect url="/path/to/another/page" /&gt; ``` #### 三、格式标签库 这部分主要介绍如何通过JSTL的格式标签库实现国际化(I18N)、日期和数字的格式化处理等功能。 ##### 1. 国际化(I18N)标签 - **`...

    Java面试问题 TXT格式

    常见的Web服务器包括Apache、Nginx和IIS等。 #### 14. 模式识别与UML建模 模式识别是计算机视觉和机器学习领域的一个分支,旨在识别和分类图像或信号中的模式。而UML(Unified Modeling Language)则是一种标准化...

Global site tag (gtag.js) - Google Analytics