How can I get a domain redirect, e.g. https://google.com. (with dot) to https://google.com/
Redirection works with htaccess but only for http:// queries
How can I get this redirect? Maybe I need to add some DNS record? Or maybe there is a separate htaccess rule for https://? I currently have the following rule for http:// and it works:
RewriteCond% {HTTP_HOST} \. $
RewriteRule (. *) Https://google.com/$1 [R = 301, L]
Is there anyone here who can solve the problem? Please help