Hi All,
I am having one live site say https://www.mysite.com. I want, when any user types mysite.com it should get redirected to https://www.mysite.com.
I have added rewrite rule for this and it is working.
RewriteCond %{HTTP_HOST} ^www\.mysite.\.com$
RewriteRule ^/?$ "http\:\/\/mysite\.com\/" [R=301,L]
However, the issue is I have page
https://www.mysite.com/mypage/myprofile and other pages.
if user types https://mysite.com/mypage/myprofile, it should get redirected to https://www.mysite.com/mypage/myprofile. This is not happening currently.
Your help will be highly appreciated.