Answers for "redirect htaccess not working"

1

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
1

htaccess 404 redirect

ErrorDocument 404 /404.html
Posted by: Guest on October-05-2020

Code answers related to "redirect htaccess not working"

Browse Popular Code Answers by Language