Created
December 17, 2014 22:37
-
-
Save evemilano/4e8492cb6dd05c3453f9 to your computer and use it in GitHub Desktop.
Redirezioni di massa verso un altro dominio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
# Redirect to another domain: www.sitodidestinazione.it. | |
RewriteCond %{HTTPS} off | |
RewriteCond %{HTTP_HOST} !^(www\.)?sitodidestinazione\.it$ [NC] | |
RewriteRule .* http://www.sitodidestinazione.it%{REQUEST_URI} [R=301,L] | |
# Same for HTTPS: | |
RewriteCond %{HTTPS} on | |
RewriteCond %{HTTP_HOST} !^(www\.)?sitodidestinazione\.it$ [NC] | |
RewriteRule .* https://www.sitodidestinazione.it%{REQUEST_URI} [R=301,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.evemilano.com/2014/12/redirezioni-e-comandi-utili-per-il-file-htaccess/