I have host with multiple domain pointed. i need to remove 'www' part from requested URL and redirect to it.
Ex: 1. www.abc.com rediect to abc.com
2. www.xyz.com redirect to xyz.com
i need to this dynamically.
I used below url re-write to do that but its not working.
RewriteCond %{HTTP_HOST} ^www\.%{REQUEST_URI}\.com$
RewriteRule ^/?$ "https\:\/\/%{REQUEST_URI}\.com\/" [R=301,L]
any help really appreciate.