Two questions please:
#1 I wrote a simple .htaccess file. I realize I would like to stealth the destination URL so that the original URL still shows in the address bar. What code do I add to do that. For example, these are not my real domains but if my code is:
Redirect 301 /dog/index.html http://cat.com
I would like http://www.dog.com to still appear in the address bar even after the redirect happens to http://cat.com
#2 I wanted to also learn how to code an .htaccess file to redirect a URL written as http://dog.com/brush instead of written as http://dog.com/brush.html (see code below)? I don't want users to have to type in the /brush.html, but rather just the /brush
It doesn't seem to work with this line of code below, although I thought it would (Note that I would have the domain dog.com in my cpanel pointing to the /dog directory):
redirect 301 /dog/brush/ http://cat.com