phil-BBC Posted June 10, 2010 Report Share Posted June 10, 2010 Hallo, ich möchte gerne alle Webseitenbesuche zwecks Suchmaschinenfreundlichkeit auf die Hauptdomain umleiten. RewriteCond %{HTTP_HOST} !^www.babypyramide.de$ [NC] RewriteRule ^(.*)$ http://www.babypyramide.de/$1 [L,NC,R=302] Das funktioniert auch. Jetzt habe ich nur das Problem, dass alle Anfragen, welche vom HostEurope-https-Proxie weitergeleitet werden, auch auf https bleiben sollen und nicht auf http. Also die Anfrage von https://ssl.webpack.de/babypyramide.de/index.php?page=customer&x36a33=o773qbnc2070vgb4thitc9nu91 soll dort auch bleiben. Hat jemand eine Idee? Gruß Link to comment Share on other sites More sharing options...
phil-BBC Posted June 10, 2010 Author Report Share Posted June 10, 2010 Habe endlich die Lösung. Habe folgendes in die .htaccess eingetragen: # non www fix RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ RewriteCond %{HTTP:X-FORWARDED-SERVER} !^ssl\.webpack\.de$ RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] # ssl proxy RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ RewriteCond %{SERVER_PORT} =443 RewriteRule ^ https://ssl.webpack.de/%{HTTP_HOST}%{REQUEST_URI} [R=301,L] Funktioniert einwandfrei Link to comment Share on other sites More sharing options...
oneMile Posted June 16, 2010 Report Share Posted June 16, 2010 Mhh... Habe ein ähnliches Problem. Wenn man bei mir in einem Subshop zur Kasse gehen will, landet man bei aktiviertem SSL immer im Kassenbereich des Hauptshops. Dein htaccess Eintrag verstehe ich jedoch noch nicht ganz. # ssl proxy RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ RewriteCond %{SERVER_PORT} =443 RewriteRule ^ https://ssl.webpack.de/%{HTTP_HOST}%{REQUEST_URI} [R=301,L] Wo muss ich den ssl Pfad genau eingeben? Aktuell leite ich auch verschiedene Domains auf einen Shop per RewriteCond %{HTTP_HOST} ^abcdef\.de$ [NC] RewriteRule ^(.*)$ http://www.abc.de/$1 [R=301,L] Diesen zweiten Eintrag könnte ich mir dann doch sparen, oder!? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.