I have a client that purchased their original domain (.net) and then bought the .com domain as well, then asked me to redirect all traffic to the .com site, everything seemed to go according to plan... until I noticed if I had a page bookmarked, or typed the entire URL with the .net extension, the address would not rewrite to .com.
Example: if I navigate to example.net/page
I want the address to change to example.com/page
(whereas at the moment it is not)
Here's my .htaccess file
RewriteCond %{HTTP_HOST} ^promotionstudios\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.promotionstudios\.net$
RewriteRule ^(.*)$ "http\:\/\/www\.promotionstudios\.com\/" [R=301,L]
Any insight is appreciated! Thanks in advance!