How to redirect - Post ID 274232

User 495092 Photo


Registered User
259 posts

How can I redirect an old page on my website (still showing up in Google search) to a new website?

Thanks,
T.
User 103173 Photo


VP of Software Development
0 posts

The easiest way is with htaccess.

# This allows you to redirect page1.html to page2.html.
Redirect /page1.html page2.html
Learn the essentials with these quick tips for Responsive Site Designer, Responsive Email Designer, Foundation Framer, and the new Bootstrap Builder. You'll be making awesome, code-free responsive websites and newsletters like a boss.
User 2846109 Photo


Ambassador
341 posts

I would check with your hosting company (maybe their help pages) on how to do a 'redirect'.
http://www.pixelandpoly.com/ (built with Bootstrap Builder)
Video Tutorials - https://www.youtube.com/channel/UCQMcF0 … EKA/videos
The Universe from A to Z - https://universeatoz.com/ (built with Foundation Framer)
User 303390 Photo


Registered User
97 posts

<html>
<head>
<meta http-equiv="Refresh" content="0; url=http://www.newwebsite.com/" />
</head>
<body>
<p>Please follow <a href="http://www.newwebsite.com/">this link</a>.</p>
</body>
</html>

HTTP refresh works with most (all?) browsers. Put that refresh line at the top of your head section.
The zero for content is the time delay before the redirect...using zero is obviously the fastest.
The link is there in case the browser doesn't support the refresh.
User 2839879 Photo


Registered User
99 posts

1. Open Notepad.
2. Save the file as .htaccess
3. Enter the following without the quotations...

'Redirect 301 /origin /destination'

Note: replace 'origin' with the page name where you want traffic redirected from. Similarly, replace 'destination' with the name of the page of where traffic will go.

4. Upload to the root directory.

Note: Use 301 for permanent redirections. Use 302 for temporary redirections.

Hope this helps.

CoffeeCup Websites:
City Church Christchurch: https://city.org.nz
Champion Freight: https://www.championfreight.co.nz/
eChamp: https://echamp.co.nz/
Champion Containers: http://championcontainersnz.com/
User 10077 Photo


Senior Advisor
1,096 posts

Bainn wrote:
1. Open Notepad.
2. Save the file as .htaccess
3. Enter the following without the quotations...

'Redirect 301 /origin /destination'

Note: replace 'origin' with the page name where you want traffic redirected from. Similarly, replace 'destination' with the name of the page of where traffic will go.

4. Upload to the root directory.

Note: Use 301 for permanent redirections. Use 302 for temporary redirections.

Hope this helps.


That syntax should work, but some hosts require a more in-depth syntax. If the above method doesn't work for you, be sure to check with your host. In some cases, their control panel may have a utility built into it to help you.
ASK ME ANYTHING
I provide personalized help for Coffeecup Users including personal or group training for Site Designer, Web Form Builder and more via Zoom.
Email me at support@uscni.org or call 865-687-7698.

Did you know that Web Form Builder can be used for both simple and complicated forms and that it's not limited to the default fonts and buttons? Take a look at a form we developed for WindowTinting.com.
https://forms.windowtinting.com/forms/w … ppingcart/

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.