强制使用HTTPS协议

3
如何强制整个网站使用 https://?我的网站是基于 CodeIgniter、MySQL 和 Apache 在 CentOS 上构建的,请问有谁可以给我指点迷津。 编辑: 我正在使用 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的响应。有什么想法吗?
1个回答

7

我曾经在 .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]

这里首先涉及协议,然后删除了“www”。

更新:

要强制使用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`协议? - fishcracker
如果我反过来怎么办?我只想在某些URL上强制使用https,例如http://mysite.com/login、http://mysite.com/register和http://mysite.com/userportal及其片段(userportal/profile、userportal/logout)?谢谢! - fishcracker
@fishcracker 加了一点,可能需要再调整一下。 - Dale
我正在使用CodeIgniter,它内置了.htaccess。当我添加了您的建议后,我收到了500的响应:(请查看我的编辑。 - fishcracker

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接