Redirecting domain.com/folder to www.domain.com/folder in Apache?
OK using this solution I'm able to redirect domain.com to www.domain.com.
But i want to redirect domain.com/folder to www.domain.com/folder too.
When I try domain.com/folder I'm getting redirected like this
www.domain.comfolder. How to fix this?
My redirect configuration in .htaccsess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent,L]
No comments:
Post a Comment