Good day
I've installed v.4.0.1.
Firstly, I need to redirect all links www.domain.com to domain.com.
Also I really want to rewrite links with ip to links with domain name instead ip.
-------
Redirect in .htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite\.com
RewriteRule ^(.*)$ http://yoursite.com/$1 [R=permanent,L] .
or like this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
-------
Both code not working. Seems it causes a cyclic redirect.
I've installed v.4.0.1.
Firstly, I need to redirect all links www.domain.com to domain.com.
Also I really want to rewrite links with ip to links with domain name instead ip.
-------
Redirect in .htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite\.com
RewriteRule ^(.*)$ http://yoursite.com/$1 [R=permanent,L] .
or like this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
-------
Both code not working. Seems it causes a cyclic redirect.