- 301 redirection of all pages except the homepage
- RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
- RewriteCond !^$ [NC]
- RewriteRule ^(.*)$ http://old.example.com/$1 [R=301,L]
- RewriteEngine On
- RewriteBase /
- RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
- #if not root
- RewriteCond %{REQUEST_URI} !^/?$ [NC]
- #redirect
- RewriteRule ^(.*)$ http://old.example.com/$1 [R=301,L]