Answers for "how to redirect http to https on apache1"

2

apache redirect http to https

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
Posted by: Guest on December-21-2020
1

apache redirect www to non-www

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
    RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
</IfModule>
Posted by: Guest on December-21-2020

Code answers related to "how to redirect http to https on apache1"

Browse Popular Code Answers by Language