Domain redirects won't work

Hi, my netlify site is alte-sachen.tuxifan.ga and redirects are broken:
Deployment logs shows that all my rules have been processed. My _redirects is:

# Error pages
/* /404.txt 404

# Domain redirects
https://nisas-alte-sachen.netlify.com/* https://alte-sachen.tuxifan.ga/:splat 301!
https://bashskripten.tuxifan.ga/* /websites/live/bashskripten.esy.es/:splat 200!
https://forumprofi1.bashskripten.tuxifan.ga/* /websites/live/bashskripten.forumprofi.de/:splat 200!
https://forumprofi2.bashskripten.tuxifan.ga/* /websites/live/bashskripten-phpbb2.forumprofi.de/:splat 200!

The 404 rule is the only rule that is actually working, all the others are simply ignored.
What did I do wrong?

Thank you form your support already
niansa

Hi @niansa

Obviously the format _redirects is wrong.

/* /404.txt 404

_rewrite reads from top to bottom. Since /* points to all addresses,
it becomes 404 and 404.txt

# Domain redirects
https://nisas-alte-sachen.netlify.com/* https://alte-sachen.tuxifan.ga/:splat 301!
https://bashskripten.tuxifan.ga/* /websites/live/bashskripten.esy.es/:splat 200!
https://forumprofi1.bashskripten.tuxifan.ga/* /websites/live/bashskripten.forumprofi.de/:splat 200!
https://forumprofi2.bashskripten.tuxifan.ga/* /websites/live/bashskripten-phpbb2.forumprofi.de/:splat 200!

This is also strange (though not working). The format is from to status.

Please check the contents of this page carefully:

2 Likes