redirect301 – Email shop Community https://theemailshop.co.uk/community Tue, 03 Dec 2019 10:53:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.3 How would you redirect one page to another page or even website using? HTAcess? https://theemailshop.co.uk/community/knowledge-base/how-would-you-redirect-one-page-to-another-page-or-even-website-using-htacess/ Tue, 03 Dec 2019 10:53:46 +0000 https://theemailshop.co.uk/forum/?post_type=epkb_post_type_1&p=701 If some page on the website is not existing, and you need to redirect it to another page or even the website then a user can use the .htaccess file for redirection without wasting a minute.

Redirect from a page/directory to another domain or the main domain:

Redirect from one page to another domain:
Rewrite Engine on
Redirect 301 /mypage.html http://example.com

Redirect from one page to another page

Redirect from a page/directory to another page
Redirect 301 /oldpage.html /newpage.html

so, when you open the URL example.com/oldpage.html, it would automatically redirect you to the new page such as example.com/newpage.html.

]]>