Many times, it happens that we spell the URL or web address wrong. Like for eg., it is observed that many times while typing google.com, we misspell it as googlr.com
Is it possible to redirect such misspelled domains to the correct one?
Yes, it is possible as far as the misspelled domain is not registered by someone else. How to do that?
It is pretty simple, just register the most misspelled domain and if you are hosted on Apache and use .htaccess, you can change the script using mod_rewrite to:-
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?mysit\.com
RewriteRule ^(.*) http://www.mysite.com/$1 [R=301,L]
And then you will be simply able to redirect from misspelled URL to the correct URL.