Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.

You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page

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