1
Hallo zusammen
Ich habe ein aktives SSL-Zertifikat und möchte nun von http:// zu https:// umleiten.
Jetzt sieht meine .htaccess so aus, ist das korrekt? Ich habe nur den Seitennamen mit Domain überschrieben hier, alles andere ist unverändert.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Redirect from https to http
RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://%{HTTP_HOST}/$1 [R=301,L]
#RewriteCond %{SERVER_PORT} !^443$
#RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
RewriteCond %{HTTP_REFERER} !^http://www.domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^https://domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://domain.ch$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
Ich habe ein aktives SSL-Zertifikat und möchte nun von http:// zu https:// umleiten.
Jetzt sieht meine .htaccess so aus, ist das korrekt? Ich habe nur den Seitennamen mit Domain überschrieben hier, alles andere ist unverändert.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Redirect from https to http
RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://%{HTTP_HOST}/$1 [R=301,L]
#RewriteCond %{SERVER_PORT} !^443$
#RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
RewriteCond %{HTTP_REFERER} !^http://www.domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.domain.ch$ [NC]
RewriteCond %{HTTP_REFERER} !^https://domain.ch/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://domain.ch$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]