Hi
I need to add the following sample url, http://www.mysite.com/home to my .htaccess file to redirect it to the following url: http://www.mynewsite.com/welcome. I've seen that my htaccess uses RewriteCond, and tried a code like this:
RewriteCond %{HTTP_HOST} ^www\.mysite\.com/home$ [NC]
RewriteCond ^(.*)$ http://www.mynewsite.com/welcome$1 [R=301,L]
However am getting Internal Server Error 500. Where did I go wrong?