Einzelnen Beitrag anzeigen
Ungelesen 13.12.12, 01:50   #4
KnownSoldier
Anfänger
 
Registriert seit: Oct 2008
Beiträge: 9
Bedankt: 9
KnownSoldier ist noch neu hier! | 0 Respekt Punkte
Standard

This is the method I use for redirecting an entire site. It’s especially helpful when you have hundreds of possible URLs on one domain and you want to send them all to a new single location.

redirectMatch 301 ^/ http://newsite.com

Sometimes you just want to redirect from domain to domain with the permalink structure. Assuming you are able to use mod_rewrite, this should work.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.oldsite.com$ [NC]
RewriteRule ^(.*)$ http://www.newsite.com/$1 [R=301,L]
KnownSoldier ist offline   Mit Zitat antworten