Eu gostaria que todos acessassem o link ou link para ser automaticamente redirecionado para o link no meu (compartilhado web hosting), no entanto eu ainda não tive sorte em realizar isso.
Primeiro eu tentei criar um redirecionamento no cPanel, no entanto isso não parece ter qualquer efeito.
Em seguida, entrei em contato com meu host, que indicou que eu precisaria editar meu arquivo "htaccess" ...
O arquivo "htaccess" original deste domínio contém:
RewriteEngine on
RewriteOptions inherit
AuthName "Restricted Area"
AuthUserFile "/home/CPANEL LOGIN USERNAME/.htpasswds/public_html/passwd"
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-SSL} off
RewriteCond %{HTTP_HOST} ^my-domain\.com\.au$ [OR]
RewriteCond %{HTTP_HOST} ^www\.my-domain\.com\.au$
RewriteRule ^(.*)$ "https\:\/\/www\.my-domain\.com\.au\/$1" [R=301,L]
Eu tentei substituir isso com (do StackExchange):
RewriteEngine on
RewriteCond %{HTTP_HOST} ^my-domain\.com.au$ [NC]
RewriteRule ^(.*)$ http://www.my-domain.com.au/$1 [R=301,L]
# check if https if off and check if the requested uri ends with login
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} login$
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
E:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^my-domain\.com\.au$ [NC]
RewriteRule ^(.*)$ http://www.my-domain.com.au/$1 [R=301,L]
# check if https if off and check if the requested uri ends with login
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} login$
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
No entanto, até o momento, nenhuma dessas revisões do arquivo "htaccess" teve qualquer efeito ...
Qualquer ajuda para alcançar meu objetivo seria imensamente apreciada.