Ein kleines Tutorial für folgendes: http://domain.ch zu http://www.domain.ch
Öffnet dazu die .htaccess-Datei im Root-Verzeichnis und fügt folgendes hinzu:
Code:
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
Nun wird man von domain.ch zu www.domain.ch weitergeleitet.
Hier noch meine ganze .htaccess-Datei:
Code:
# Enable mod_rewrite
RewriteEngine On
RewriteBase /
# Block any URI protocol in the query string
RewriteCond %{QUERY_STRING} (ftp|https?):|/etc/ [NC]
RewriteRule .* - [F,L]
# Block any URI protocol in the request
RewriteCond %{REQUEST_URI} (ftp|https?):|/etc/ [NC]
RewriteRule .* - [F,L]
# Rewrite TYPOlight URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .*$ index.php [L]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
Diese .htaccess-Datei funktioniert nur ohne Suffix und mit URL Umschreibung.