简体   繁体   中英

How to redirect 404 page to home page in 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.

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

Please see 404-Error-To-Home Page-Redirection.png 在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM