Website-Umleitungen

Notiz um Seiten und Websites umzuleiten.

Umleitung zu 'mit www'

### Force www in a Generic Way
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Umleitung zu 'ohne www'

### Force non-www in a Generic Way
RewriteCond %{HTTP_HOST} ^www\.
RewriteCond %{HTTPS}s ^on(s)|off
RewriteCond http%1://%{HTTP_HOST} ^(https?://)(www\.)?(.+)$
RewriteRule ^ %1%3%{REQUEST_URI} [R=301,L]

Umleitung zu 'mit SSL'

### Enable / Force HTTPS<IfModule mod_rewrite.c>  
RewriteEngine On  
RewriteCond %{HTTPS} !=on  
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]</IfModule>

Umleitung zu einer anderen Domain

### Redirect an Entire Site
Redirect 301 / https://newsite.com/

Umleitung zu einer anderen Seite innerhalb einer Domain

### Redirect a Single Page
Redirect 301 /oldpage.html https://www.example.com/newpage.html
Redirect 301 /oldpage2.html https://www.example.com/folder/

WEBMANAGEMENT.online
Layout, Konfiguration, Mentoring & Support.

© WEBMANAGEMENT.online