Tag Archives: SEO

The ultimate site redirect

Add the following lines to your .htaccess file:
RewriteCond %{HTTP_HOST} !^example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
of course, you would change example.com to your domain name, and example\.com to your domain name with backslashes before the dots.
Add the following JavaScript to a file that is common to your whole website.
try {
    if (window.top.location.href != document.location.href) {
        window.top.location [...]