If you like DNray Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

Redirect some pages to another website

Started by globallike, Jan 03, 2023, 01:13 AM

Previous topic - Next topic

globallikeTopic starter

Hello!

I would like to discuss the transfer of articles from an old website to a new one. The plan is to gradually move the articles to the new site, while proofreading and refining them, until eventually the old site can be taken down.

To ensure a smooth transition, I am considering implementing 301 redirects from certain pages on the old site to the corresponding pages on the new site with updated content. Do you think this approach will work, or is there anything else I should consider?
  •  


spinneren

I see that you are considering transferring articles from an old website to a new one, and your plan is to redirect certain pages from the old site to the corresponding pages on the new site. While this approach is quite acceptable, it's important to keep in mind that you may lose positions in search engine rankings for those pages. And if this happens, there are many factors that will determine how quickly you can regain your position, such as optimizing content on the landing pages (which you plan to change), building a positive reputation for your new site, and ensuring high quality content that reflects well in the eyes of search engines.
  •  

halley_pham

In order to redirect traffic from an old web page to a new one, 301 redirect is commonly used. This means that the page with the old address is no longer available and visitors are automatically redirected to another page instead. This process also includes removing the donor page from search engine indexes and transferring its reference weight to the acceptor page.

One of the most popular ways to set up a redirect is by editing the .htaccess file on the site's server. However, this method is only applicable for sites running on the Apache server. To implement the redirect, you need to go to the .htaccess file (or create it in the site folder) and insert a code snippet at the beginning of the file. It's recommended to make a backup of the entire resource before making any changes to ensure that no important data is lost.

Here's an example of a code snippet that can be used for redirection:

RewriteEngine On
RewriteCond %{HTTP_HOST} yourdomain-old.com
RewriteRule (.*) http://yourdomain-new.com/$1 [R=301,L]
  •  

sinhvien

Let's consider an example to illustrate the process of transferring articles from an old website to a new one with the implementation of 301 redirects.

Imagine you are a web designer working with a company that has an old website focused on technology news and updates. The decision has been made to create a new website with a more modern design, updated content, and improved navigation. The goal is to transfer the existing articles from the old site to the new one while maintaining and enhancing their relevance and visibility.

1. Content Audit:
You begin by conducting a detailed audit of the old website's content. You identify hundreds of articles across various topics such as cybersecurity, artificial intelligence, and mobile technology. Each article has a specific URL that needs to be mapped to the new site.

2. URL Mapping and 301 Redirects:
You carefully map out the old URLs to their corresponding new URLs on the redesigned website. For example, the old URL www.oldsite.com/cybersecurity-trends-2020 is mapped to the new URL www.newsite.com/cybersecurity-trends. You set up 301 redirects for each mapped URL to ensure that anyone visiting the old links is seamlessly redirected to the new website's updated content.

3. User Experience and Design Consistency:
To maintain design consistency, you work with the new website's design team to ensure that the layout, typography, color scheme, and overall visual identity align with the old site in a way that feels like a refreshed version. This helps to create a sense of continuity for returning visitors.

4. Content Refinement and Optimization:
As the articles are migrated to the new site, you collaborate with content creators and SEO specialists to refine the articles. For example, an article about "Top Smartphone Trends" is updated with new information to reflect the latest industry developments. Meta descriptions, titles, and keywords are optimized to improve search visibility and user engagement.

5. Ongoing Monitoring and Analysis:
After the transfer is complete and the 301 redirects are in place, you continuously monitor the performance of the new website. Using tools like Google Analytics and Search Console, you observe the traffic, rankings, and any potential issues related to the migration. You make adjustments as needed to optimize the new site's performance.


Here's a simplified example of how 301 redirects can be implemented using .htaccess file for Apache web servers. This example assumes that you are migrating from an old domain "olddomain.com" to a new domain "newdomain.com" and want to redirect specific pages:

RewriteEngine on
RewriteRule ^oldpage.html$ http://newdomain.com/newpage.html [R=301,L]
RewriteRule ^anotheroldpage.html$ http://newdomain.com/anothernewpage.html [R=301,L]


In this example, when a visitor tries to access "olddomain.com/oldpage.html" or "olddomain.com/anotheroldpage.html", they will be automatically redirected to "newdomain.com/newpage.html" and "newdomain.com/anothernewpage.html" respectively with a 301 (permanent) redirect. The "R=301" flag indicates the use of a 301 redirect, and the "L" flag signals that this is the last rule to be processed if this rule matches.

If you want to redirect all pages from the old domain to the new domain, you can use the following generic redirect rule in your .htaccess file:

RewriteEngine on
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]


This rule captures any URL from the old domain and redirects it to the same URL on the new domain, effectively redirecting the entire old website to the new domain.

It's important to note that before implementing these redirects, you should test them thoroughly on a staging environment and ensure that you have a backup of your original .htaccess file in case anything goes wrong.

For other web server technologies, such as Nginx or IIS, the implementation of 301 redirects will differ. If you are using a different type of server, you may need to refer to the dоcumentation specific to that server for proper implementation.
  •  

zmochibu

Why drag this out and risk user confusion or a rankings nosedive? You're playing with fire if you think Google won't notice two sites running parallel with half-baked content. That's a straight-up invite for a duplicate content smackdown or a trust signal drop.

And 301s? Sure, they pass some link juice, but if you botch even one redirect, you're toast - think traffic leaks and angry users. Why not rip the Band-Aid off with a full migration and a rock-solid redirect plan? Half-measures like this just scream "amateur hour" in the SEO game.
  •  

IndianPhotoAcademy

You can use a 301 redirect in your.htaccess file to reroute particular pages to another website. This approach guarantees that visitors are automatically redirected to the new location and is SEO-friendly. For instance, you can add the following line to your.htaccess file to reroute example.com/page1 to othersite.com/page1:

Redirect 301 /page1 https://othersite.com/page1

There are plugins that make this process easier if you're using a content management system (CMS) like WordPress. Always make sure your redirects are working as intended by testing them.

  •  

inhathanh

Your approach is solid — using 301 redirects is the correct method for permanently moving content while preserving SEO value. A few tips:
– Make sure the redirects are one-to-one and point to the most relevant, updated version of each article.
– Monitor traffic and crawl errors via Google Search Console to catch broken or missing redirects.
– Keep the old site online until most traffic is properly redirected and indexed.

Great strategy overall — just ensure the redirects are implemented carefully and tested.



If you like DNray forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...