Warning: You are browsing the documentation for PrestaShop 8, which is outdated.

You might want to read an updated version of this page for the current version, PrestaShop 9. Read the updated version of this page

Learn how to update to the latest version.

Moving pages

If you need to move a page from the documentation you need to think about the people who bookmarked it and about search engines. As much as possible, make sure URLs are preserved.

Moving page outside of the documentation

You can use the following hugo configuration to create a redirection:

---
layout: redirect
redirect: https://www.newsite.org/new_location
_build:
  list: never
---

See example PR

Moving pages inside the documentation

You can use Hugo aliases to preserve URLs

---
title: ...
aliases:
  - /previous-url
---

See example PR