Teach what you learned today
RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com$ [NC] RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]
good reference:
https://my.bluehost.com/hosting/help/htaccess_redirect
RewriteCond %{HTTP_HOST} !^www\. [NC]RewriteCond %{HTTP_HOST} ^(.*)$ [NC]RewriteRule (.*) https://www.%1/learn/$1 [R=301,L]ref: https://htaccessbook.com/htaccess-redirect-https-www/
RewriteCond %{HTTP_HOST} !^www\. [NC]
ReplyDeleteRewriteCond %{HTTP_HOST} ^(.*)$ [NC]
RewriteRule (.*) https://www.%1/learn/$1 [R=301,L]
ref: https://htaccessbook.com/htaccess-redirect-https-www/