Answers for "redirect .htaccess https"

PHP
0

.htaccess redirect to https

<IfModule mod_rewrite.c>
....
....
# Redirect To HTTPS
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^ https://example.com%{REQUEST_URI} [L,NE,R=301]
...
...
</IfModule>
Posted by: Guest on March-05-2021

Browse Popular Code Answers by Language