Answers for "how to use redirect in htaccess"

0

htaccess redirect to https

RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} ^yourdomain\.com [OR]
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com
RewriteRule .* https://yourdomain.com%{REQUEST_URI} [R=301,L]
Posted by: Guest on September-26-2020
0

Redirect request .htaccess

["host"] =~ "^mydomain\.name"
                {
                    url.redirect = ( "^/(.*)" => "http://www.another-domain.name/1" )
                }
Posted by: Guest on August-30-2021

Browse Popular Code Answers by Language