I'm facing a problem with the redirect.
I used the code below and also redirect 301 of the cpanel with wildcard on. It worked but with a problem:
When the url is 'example.com/anypage.html' I want it to redirect for the same page but with the www. prefix ('www.example.com/anypage'). What is happening is that it redirects always to the homepage of the site ('www.example.com/index.html') instead of the specific page it should have.
What am I missing?
Thanks.
Code used in .htaccess
I used the code below and also redirect 301 of the cpanel with wildcard on. It worked but with a problem:
When the url is 'example.com/anypage.html' I want it to redirect for the same page but with the www. prefix ('www.example.com/anypage'). What is happening is that it redirects always to the homepage of the site ('www.example.com/index.html') instead of the specific page it should have.
What am I missing?
Thanks.
Code used in .htaccess
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]