February 24, 2023 : How to Redirect to Another Website
© 安岡喜晴 (JoyShine)
This is how to redirect to another website instead of displaying html error pages.
Create a file named ".htaccess" in the top root directory and write the code as below:
Redirect donations.html https://www.un.org/en/about-us/how-to-donate-to-the-un-system
ErrorDocument 404 https://www.un.org/en/about-us/how-to-donate-to-the-un-system
I redirect all 404 error responses to the United Nations donation page.