Tuesday 22 October 2019

htaccess redirect

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 

1 comment:

  1. 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/

    ReplyDelete