doujiku1028 2017-11-21 12:55
浏览 51
已采纳

如何将404页面重定向到magento中的主页

I am trying to redirect 404 page to home page in magento 1.9.

From admin config->web I can set in 'cms no page' to 'Home Page' option and it is redirecting properly.

Like, 'www.example.com/abcv' which is 404 page, this redirecting to home page but in browser url is not changing.

I have tried .htaccess to ,

ErrorDocument 404 /index.php

but its not working,

ANy suggestion would be great.

  • 写回答

2条回答 默认 最新

  • douyuan3842 2017-11-21 13:48
    关注

    if the query string is not changing then it is not a redirect.

    To solve your Issue without backend programming you could create custom 404 cms page and put javascript redirect in it.

    <script type="text/javascript">
    function redirectHome() {
      window.location = "{{store url=''}}";
    }
    setTimeout("redirectHome()", 5000);
    </script>
    

    otherwise you will have to write a module and add a custom frontend router

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?