web-dev-qa-db-fra.com

Redirection HTTP vers https Apache

Environnement Centos avec Apache

Essayer de configurer la redirection automatique de http à https

From manage.mydomain.com --- To ---> https://manage.mydomain.com 

J'ai essayé d'ajouter ce qui suit à mon httpd.conf mais cela n'a pas fonctionné

 RewriteEngine on
    ReWriteCond %{SERVER_PORT} !^443$
    RewriteRule ^/(.*) https://%{HTTP_Host}/$1 [NC,R,L]

Des idées?

137
Deano

J'ai effectivement suivi cet exemple et cela a fonctionné pour moi :)

NameVirtualHost *:80
<VirtualHost *:80>
   ServerName mysite.example.com
   DocumentRoot /usr/local/Apache2/htdocs 
   Redirect permanent / https://mysite.example.com/
</VirtualHost>

<VirtualHost _default_:443>
   ServerName mysite.example.com
  DocumentRoot /usr/local/Apache2/htdocs
  SSLEngine On
 # etc...
</VirtualHost>

Alors fais:

/etc/init.d/httpd restart

195
Deano
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_Host}%{REQUEST_URI}

http://www.sslshopper.com/Apache-redirect-http-to-https.html

ou

http://www.cyberciti.biz/tips/howto-Apache-force-https-secure-connections.html

115
IdemeNaHavaj

Recherche de Apache redirect http to https et atterri ici. Voici ce que j'ai fait sur Ubuntu:

1) Activer les modules

Sudo a2enmod rewrite
Sudo a2enmod ssl

2) Modifier la configuration de votre site

Editer le fichier

/etc/Apache2/sites-available/000-default.conf

Le contenu devrait être:

<VirtualHost *:80>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_Host}%{REQUEST_URI}
</VirtualHost>

<VirtualHost *:443>
    SSLEngine on
    SSLCertificateFile    <path to your crt file>
    SSLCertificateKeyFile   <path to your private key file>

    # Rest of your site config
    # ...
</VirtualHost>

3) Redémarrez Apache2

Sudo service Apache2 restart
86
Jossef Harush

En fait, votre sujet appartient à https://serverfault.com/ mais vous pouvez toujours essayer de les vérifier . Htaccess directives:

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*) https://%{HTTP_Host}/$1
11
5ervant

L'utilisation de mod_rewrite n'est pas la méthode recommandée. Utilisez plutôt l'hôte virtuel et la redirection.

Si vous êtes enclin à utiliser mod_rewrite:

RewriteEngine On
# This will enable the Rewrite capabilities

RewriteCond %{HTTPS} !=on
# This checks to make sure the connection is not already HTTPS

RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
# This rule will redirect users from their original location, to the same 
location but using HTTPS.
# i.e.  http://www.example.com/foo/ to https://www.example.com/foo/
# The leading slash is made optional so that this will work either in
# httpd.conf or .htaccess context

Référence: Httpd Wiki - RewriteHTTPToHTTPS

Si vous recherchez une redirection permanente 301, l'indicateur de redirection doit être le suivant:

 R=301

donc le RewriteRule sera comme,

RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
8
Vincy

Si vous avez Apache2.4, vérifiez 000-default.conf - supprimez DocumentRoot et ajoutez

Redirect permanent / https://[your-domain]/
6
indifference

Version du serveur: Apache/2.4.29 (Ubuntu)

Après de longues recherches sur le Web et dans la documentation officielle d'Apache, la seule solution qui a fonctionné pour moi est venue de /usr/share/doc/Apache2/README.Debian.gz

To enable SSL, type (as user root):

    a2ensite default-ssl
    a2enmod ssl

Dans le fichier /etc/Apache2/sites-available/000-default.conf, ajoutez le

Rediriger "/" " https://sub.domain.com/ "

<VirtualHost *:80>

    #ServerName www.example.com
    DocumentRoot /var/www/owncloud
    Redirect "/" "https://sub.domain.com/"

C'est ça.


P.S: Si vous voulez lire le manuel sans extraire:

gunzip -cd /usr/share/doc/Apache2/README.Debian.gz
5
DimiDak

Cela a fonctionné pour moi:

RewriteCond %{HTTPS} =off
RewriteRule ^ https://%{HTTP_Host}%{REQUEST_URI} [QSA,L,R=301]
3
Fint

Ce code fonctionne pour moi.

# ----------port 80----------
RewriteEngine on
# redirect http non-www to https www
RewriteCond %{HTTPS} off
RewriteCond %{SERVER_NAME} =example.com
RewriteRule ^ https://www.%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]

# redirect http www to https www
RewriteCond %{HTTPS} off
RewriteCond %{SERVER_NAME} =www.example.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
# ----------port 443----------
RewriteEngine on
# redirect https non-www to https www
RewriteCond %{SERVER_NAME} !^www\.(.*)$ [NC]
RewriteRule ^ https://www.%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
2
user7817632

Veuillez essayer celui-ci dans la configuration Apache Virtualhosting puis recharger le service Apache

RewriteEngine On

RewriteCond %{HTTPS} off


RewriteRule ^ https://%{HTTP_Host}%{REQUEST_URI}
1
MD IRFAN