I'm trying to redirect my website like example.com/anypage
to www.example.com/anypage
This is what I'm using in my httpd.conf file
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [nocase]
RewriteRule ^(.*) http://www.example.com/$1 [last,redirect=301]
This redirects the page to www.example.com//anypage
How do I remove the extra slash?