initial commit

This commit is contained in:
2026-03-18 15:30:18 +01:00
commit 1db0cbecc7
1705 changed files with 626031 additions and 0 deletions

View File

@ -0,0 +1,46 @@
Options +FollowSymlinks
RewriteEngine On
RewriteBase /_core/
# Ordner ausschlie<69>en
# RewriteCond %{REQUEST_FILENAME} -d
# RewriteRule ^.*$ - [L]
# (2) kein Slash am Ende
# RewriteCond %{REQUEST_URI} !/$
# (1) keine Dateiendung vorhanden ; Redirect auf REQUEST_URI mit /
# RewriteRule !\.[A-Za-z0-9]{2,4}$ %{REQUEST_URI}/ [R=301,L]
# rule for removing www on sub domains
# RewriteCond %{HTTP_HOST} ^www\.uba\.co2-rechner\.de$ [NC]
# RewriteRule (.*) https://uba.co2-rechner.de/$1 [R=301,L]
RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Without subdomain: redirect to klimaktiv.de
RewriteCond %{HTTP_HOST} ^co2-rechner\.de$ [NC]
RewriteRule ^(.*)$ https://klimaktiv.co2-rechner.de/ [R=301,L]
# With www subdomain: redirect to klimaktiv.de
RewriteCond %{HTTP_HOST} ^www\.co2-rechner\.de$ [NC]
RewriteRule ^(.*)$ https://klimaktiv.co2-rechner.de/ [R=301,L]
# With subdomain: set customerID = subdomain
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)\.co2-rechner\.de
RewriteRule ^([^/.]+)/([^/.]+)/([^/.]+)/?$ index.php?customerID=%2&langID=$1&cat=$2 [L,QSA]
# With subdomain: set customerID = subdomain
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)\.co2-rechner\.de
RewriteRule ^([^/.]+)/([^/.]+)/?$ index.php?customerID=%2&langID=$1&cat=$2 [L,QSA]
# With subdomain: set customerID = subdomain
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)\.co2-rechner\.de
RewriteRule ^([^/.]+)/?$ index.php?customerID=%2&langID=$1 [L,QSA]
# With subdomain: set customerID = subdomain
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)\.co2-rechner\.de
RewriteRule ^$ index.php?customerID=%2 [L,QSA]