使用htaccess将所有流量重定向到裸域SSL

时间:2016-05-25 18:30:50

标签: apache .htaccess mod-rewrite ssl url-redirection

我尝试通过HTTPS重定向所有流量,这是我的htaccess文件:

<IfModule mod_rewrite.c>
Options +FollowSymLinks -Indexes
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L]
    RewriteBase /

    RedirectMatch 301 /index.php/(.*)$ /$1

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    ErrorDocument 404 index.php
</IfModule>

目前正在进行中,

如果用户在www.domain.com中输入,则会重定向到:https://domain.com,这很好。我想帮助配置文件,以便如果用户也在domain.com中输入,他们会被重定向到https://domain.com

1 个答案:

答案 0 :(得分:2)

这就像更新你的模式一样简单:

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L]