MixerDJ
Regular Member
- Nov 20, 2012
- 392
- 171
Hi Guys,
i need to redirect my non www version to www version. but in my htaccess file is having this code already
I tried to add this code to redirect to www version but it says you are having redirect loop and site is not loading
I need to know where to add this code?
should i need to keep both codes or can someone correct my codes?
Thank you guys !!
i need to redirect my non www version to www version. but in my htaccess file is having this code already
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I tried to add this code to redirect to www version but it says you are having redirect loop and site is not loading
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mydomain.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]
I need to know where to add this code?
should i need to keep both codes or can someone correct my codes?
Thank you guys !!