Magento 1.7 – How to Remove /home from URL

magento-1.7redirecturl-rewrite

I am trying to configure how to redirect my Magento website from "www.mywebsite.com/home" to base url "www.mywebsite.com", it always redirecting to www.mywebsite.com/home

RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*/home
RewriteRule ^(.*)home$ http://www.mywebsite.com/$1 [R=301,L]

but I got error at the browser says "The page isn't redirecting properly"

I don't know where to change it to only "http://www.mywebsite.com/"

I will have problem with SEO if it not change

Best Answer

Khali. please try this

find RewriteEngine on at .htaccess then file added below code

RewriteCond %{THE_REQUEST} ^.*/home
RewriteRule ^(.*)home$ http://www.domain.com/$1 [R=301,L] 
Related Topic