mit folgender .htaccess-datei schaffe ich es, wenn ich 'www.' vor meiner domain schreibe, dass ich auf 'https://domain.com' lande.
Code: Alles auswählen
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?[^.]+\.domain\.com.*$
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
FRAGE:'If you can see this page, then the people who manage this server have installed cPanel and WebHost Manager (WHM) which use the Apache Web server software and the Apache Interface to OpenSSL (mod_ssl) successfully. They now have to add content to this directory and replace this placeholder page, or else point the server at their real content.'
wie verändere ich meine .htaccess dass nicht-vergebene subs z.b. auf den ordner 'https://domain.com/fehler/' landen/weisen?!
bitte helft mir.
-(z777)-