【问题标题】:force https protocol强制 https 协议
【发布时间】:2012-11-18 16:53:51
【问题描述】:

如何强制我的网站在整个网站中使用https://?我的网站是在 CentOS 上使用 CodeIgniter、MySQL 和 Apache 构建的,有谁能赐教。

编辑

我正在使用 CodeIgniter,它有这个 .htaccess。正如我在下面的评论中提到的,我想做相反的事情(在网站的某些部分强制使用 https):

我系统上的.htaccess

Options -Indexes
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

如果我添加@Dale 建议的内容:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond ^(login|register|userportal)
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

我收到回复 500。有什么想法吗?

【问题讨论】:

    标签: php apache codeigniter https centos


    【解决方案1】:

    我过去在 .htaccess 文件中使用过它

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    

    可能有更好的实现,但它总是对我有用

    如果你想删除我用过的 www 部分

    RewriteCond %{HTTP_HOST} ^www\.(.+)
    RewriteCond %{HTTPS}s/%1 ^(on(s)|offs)/(.+)
    RewriteRule ^ http%2://%3%{REQUEST_URI} [L,R=301]
    

    这是合并规则

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    
    RewriteCond %{HTTP_HOST} ^www\.(.+)
    RewriteCond %{HTTPS}s/%1 ^(on(s)|offs)/(.+)
    RewriteRule ^ http%2://%3%{REQUEST_URI} [L,R=301]
    

    这首先处理协议,然后删除 w 的

    更新:

    要对特定目录强制执行 https 协议,您可以使用类似

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteCond ^(login|register|userportal)
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    

    如果你使用上面的,你当然会删除这个(下面)

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    

    【讨论】:

    • 如果我想强制 www.site.com 到 site.com,这里有什么需要做的调整吗?还是在https 协议中?
    • 如果我反过来呢?我只想在某些 URL 上强制使用 https,例如 mysite.com/loginmysite.com/register、&mysite.com/userportal 及其段(用户门户/配置文件、用户门户/注销)?谢谢!
    • @fishcracker 添加了一些,可能需要玩一下
    • 我正在使用 CodeIgniter,它内置了 .htaccess,当我添加您的建议时,我得到了 500 响应 :(,请查看我的编辑。
    猜你喜欢
    • 2019-12-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-03-21
    • 2014-07-03
    • 2015-08-17
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多