Answers for "redirection on non www to www htaccess"

0

redirection on non www to www htaccess

# Canonical https/www
<IfModule mod_rewrite.c>
	RewriteCond %{HTTPS} off
	RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
	
	RewriteCond %{HTTP_HOST} !^www\. [NC]
	RewriteRule (.*) https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
Posted by: Guest on July-15-2021

Code answers related to "redirection on non www to www htaccess"

Browse Popular Code Answers by Language