redirect.js 968 B

123456789101112131415161718192021222324252627
  1. export default function ({ route, redirect }) {
  2. const { path } = route;
  3. const parts = path.split('/').filter(Boolean);
  4. // 如果路径以 /index.php/products/ 开头
  5. if (path.startsWith('/index.php/products/')) {
  6. // 获取除去 /index.php/products/ 后的部分
  7. const newPath = path.replace('/index.php/products/', '/category/');
  8. return redirect(newPath);
  9. }
  10. // 如果路径以 /product/ 开头且包含多于两个部分(除了 /product/ 本身外还有分类部分)
  11. if (path.startsWith('/product/') && parts.length > 2) {
  12. // 获取最后一个部分,即产品代码
  13. const code = parts.pop();
  14. return redirect(`/product/${code}`);
  15. }
  16. if (path.startsWith('/products') && route.query.keyword) {
  17. const keyword = route.query.keyword;
  18. return redirect(`/category/searchResult?keyword=${keyword}`);
  19. }
  20. if (path === '/products' && route.query.feature === '54') {
  21. return redirect('/category?feature=54');
  22. }
  23. }