Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. 301 redirection of all pages except the homepage
  2. RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
  3. RewriteCond !^$ [NC]
  4. RewriteRule ^(.*)$ http://old.example.com/$1 [R=301,L]
  5.        
  6. RewriteEngine On
  7. RewriteBase /
  8.  
  9. RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
  10. #if not root
  11. RewriteCond %{REQUEST_URI} !^/?$ [NC]
  12. #redirect
  13. RewriteRule ^(.*)$ http://old.example.com/$1 [R=301,L]