Magento – How to redirect the Home Page in Magento? (301 permanent redirect)

magento-1redirect

I have a CMS-Website and a SHOP-Wensite and I try to redirect the Magento Homepage to my CMS-Homepage. At my server the cms and magento are in two diffrent folders. If I click at myshop.domain.com it should be redirect to cms.domain.com

I've tried with a new page in magento and at "system > configuration > web > default pages" I choose my new page as home page.

At this page I can't use PHP (header location) …or Javascript (document.location.href)

How can I redirect (301) my Magento HomePage to my CMS-Homepage?

With htaccess?
I found Catalog > URL Redirects but my 301 didn't work?!

Best Answer

You should set ../ as target path, see the screenshot below:

enter image description here

Now request to www.domain.com/network-nvr201-08lp will redirect to www.domain.com.

Related Topic