Handy .htaccess Snippets
Wildcard 301 redirect to new domain’s index page
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.domain.com/ [R=301,L]
Wildcard 301 redirect to home page (with exclusion example)
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !.css$
RewriteRule ^(.+)$ / [R=301,L]
Copy the code below to your web site.

Link to this page

