Redirect Url www Ke non www Di Opencart
by azis
edit file .htaccess dan tambahkan baris ini untuk meredirect www ke non www
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
edit file .htaccess dan tambahkan baris ini untuk meredirect non www ke www :
RewriteCond %{HTTP_HOST} ^mysite.com$ [NC]
RewriteRule ^(.*) http://www.mysite.com/$1 [R=301,L]
sebaliknya, meredirect www ke non www :
RewriteCond %{HTTP_HOST} ^www\.domainmu\.com$ [NC]
RewriteRule ^(.*) http://domainmu.com/$1 [R=301,L]