The Moz Q&A Forum

    • Forum
    • Questions
    • Users
    • Ask the Community

    Welcome to the Q&A Forum

    Browse the forum for helpful insights and fresh discussions about all things SEO.

    1. SEO and Digital Marketing Forum
    2. Categories
    3. Digital Marketing
    4. Conversion Rate Optimization
    5. Redirect Management on Headless Wordpress w/ React Front End
    Moz Q&A is closed.

    After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

    Redirect Management on Headless Wordpress w/ React Front End

    Conversion Rate Optimization
    3 2 2.4k
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as question
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • culturefoundry
      culturefoundry last edited by

      Hello everyone,

      As Headless Wordpress becomes more and more popular, it becomes more complicated to manage and track 301 redirects. I'm reaching out for advice on this.

      Our main issue right now, is that after migrating from Drupal to a Headless Wordpress/React platform we lost the ability to track, manage, and view traffic analytics for users hitting those redirects. This was something we were able to do in Drupal.

      Example: If we have a redirect in place we could see how many times in the past x number of days that redirect was hit by users attempting to access the old URL.

      Unfortunately, Yoast Premium, has been helpful with other SEO needs, but this is one that it is not able to manage.

      Anyone have any ideas, experience, or thoughts on this issue?

      Thanks for your time

      1 Reply Last reply Reply Quote 1
      • BlueprintMarketing
        BlueprintMarketing last edited by

        PS  may I see your GitHub?

        1 Reply Last reply Reply Quote 0
        • BlueprintMarketing
          BlueprintMarketing last edited by

          I love to see people using  Headless WordPress below five given free ways to do this a reverse proxy is a win-win however if you. want to do it with "react-router-dom"  for the WordPress settings in the first settings two URLs listed below you can't miss them.

          I have always used Pantheon.io for headless or Pagely

          One very simple and I believe personally saves you a lot of time method is to use a reverse proxy to do any redirects.

          my personal recommendation Fastly.com if you want something a little bit more generic and not as fast or as developer-friendly you can  page rules ( redirects if you want to be) very inexpensively like five dollars a month for 30 on Cloudflare.com For tools like this which are very good no matter what code you are running https://www.easyredir.com/blog/how-to-redirect-a-url/

          ** I would still use Fastly ( they no longer charge for SSL certs)**

          I of doneness with node.js I just have not done with react but what you're going to have to read through these two URLs and decide which end of it want to do the redirections from you can redirect from PHP you have to change your settings.php and your function.php file for the setup settings number two Install react-router to create routing for React. npm install react-router-dom

          THE 2 URLs listed below

          1. https://www.efficiencyofmovement.com/posts/redirect-headless-wordpress/
          2. https://hybrit.org/blog/combine-headless-wordpress-with-a-react-spa-part-1

          you're going. to have to WP changes to the settings.php as well as function.PHP

          https://github.com/joshsmith01/headless-wp

          • https://medium.com/moij/going-headless-with-wordpress-graphql-and-react-b939263a6f3d
          • https://discourse.roots.io/t/detach-front-end-and-use-wp-headless/11419/2
          • https://github.com/postlight/headless-wp-starter/issues/131

          Install react-router to create routing for React. npm install react-router-dom

          React Router allows us to create individual routes for our pages and adjust our URL. In order to dynamically create the routing, we can add the following code. Don't forget to import react-router-dom

          Let's change the following code inside the render function to:

          |   | // Import Router at the top of the page |
          |   | import { |
          |   | BrowserRouter as Router, |
          |   | Link, |
          |   | Route |
          |   | } from "react-router-dom"; |
          |   |   |
          |   | render() { |
          |   | const { pages } = this.state; |
          |   |   |
          |   | return ( |
          |   | |
          |   | <fragment></fragment> |
          |   | {/* Links /} |
          |   | |
          |   | {pages.map((page, index) => { |
          |   | return {page.slug}; |
          |   | })} |
          |   | |
          |   |   |
          |   | {/
          Routing */} |
          |   | {pages.map((page, index) => { |
          |   | return ( |
          |   | |
          |   | exact |
          |   | key={index} |
          |   | path={/${page.slug}} |
          |   | render={props => ( |
          |   | <examplepage {...props}="" page="{page}"></examplepage> |
          |   | )} |
          |   | /> |
          |   | ); |
          |   | })} |
          |   | |
          |   | |
          |   | ); |
          |   | } |

          view rawApp.js hosted with ❤ by GitHub

          Create a folder inside the src folder called components and add ExamplePage.js to it. Inside ExamplePage.js we will add the following code

          |   | import React from 'react' |
          |   |   |
          |   | export default function ExamplePage(props) { |
          |   | const { page } = props; |
          |   | return ( |
          |   | |
          |   |

          {page.title.rendered}

          |
          |   | |
          |   | |
          |   | ) |
          |   | } |

          view rawExamplePage.js hosted with ❤ by GitHub I hope this is been some help to please let me know if you run into any obstacles  I like that you are doing headless Pantheon is. a great resource for this as well. Let me know if you run into any obstacles or if I can be of more help. all best,Tom

          1 Reply Last reply Reply Quote 0
          • 1 / 1
          • First post
            Last post

          Got a burning SEO question?

          Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.


          Start my free trial


          Explore more categories

          • Moz Tools

            Chat with the community about the Moz tools.

            Getting Started
            Moz Pro
            Moz Local
            Moz Bar
            API
            What's New

          • SEO Tactics

            Discuss the SEO process with fellow marketers

            Content Development
            Competitive Research
            Keyword Research
            Link Building
            On-Page Optimization
            Technical SEO
            Reporting & Analytics
            Intermediate & Advanced SEO
            Image & Video Optimization
            International SEO
            Local SEO

          • Community

            Discuss industry events, jobs, and news!

            Moz Blog
            Moz News
            Industry News
            Jobs and Opportunities
            SEO Learn Center
            Whiteboard Friday

          • Digital Marketing

            Chat about tactics outside of SEO

            Affiliate Marketing
            Branding
            Conversion Rate Optimization
            Web Design
            Paid Search Marketing
            Social Media

          • Research & Trends

            Dive into research and trends in the search industry.

            SERP Trends
            Search Behavior
            Algorithm Updates
            White Hat / Black Hat SEO
            Other SEO Tools

          • Support

            Connect on product support and feature requests.

            Product Support
            Feature Requests
            Participate in User Research

          • See all categories

          Get started with Moz Pro!

          Unlock the power of advanced SEO tools and data-driven insights.

          Start my free trial
          Products
          • Moz Pro
          • Moz Local
          • Moz API
          • Moz Data
          • STAT
          • Product Updates
          Moz Solutions
          • SMB Solutions
          • Agency Solutions
          • Enterprise Solutions
          • Digital Marketers
          Free SEO Tools
          • Domain Authority Checker
          • Link Explorer
          • Keyword Explorer
          • Competitive Research
          • Brand Authority Checker
          • Local Citation Checker
          • MozBar Extension
          • MozCast
          Resources
          • Blog
          • SEO Learning Center
          • Help Hub
          • Beginner's Guide to SEO
          • How-to Guides
          • Moz Academy
          • API Docs
          About Moz
          • About
          • Team
          • Careers
          • Contact
          Why Moz
          • Case Studies
          • Testimonials
          Get Involved
          • Become an Affiliate
          • MozCon
          • Webinars
          • Practical Marketer Series
          • MozPod
          Connect with us

          Contact the Help team

          Join our newsletter
          Moz logo
          © 2021 - 2026 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
          • Accessibility
          • Terms of Use
          • Privacy

          Looks like your connection to Moz was lost, please wait while we try to reconnect.