{"id":679,"date":"2019-02-13T22:46:24","date_gmt":"2019-02-13T14:46:24","guid":{"rendered":"https:\/\/www.intelliwolf.com\/?p=679"},"modified":"2022-04-22T18:28:33","modified_gmt":"2022-04-22T10:28:33","slug":"redirect-all-pages-domain-to-another-with-htaccess","status":"publish","type":"post","link":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/redirect-all-pages-domain-to-another-with-htaccess\/","title":{"rendered":"How To Redirect All Pages From One Domain To Another With .htaccess"},"content":{"rendered":"\n

Redirecting pages or websites tends not to be something most web designers deal with on a regular basis.<\/p>\n\n\n\n

What sometimes happens is you change your domain and keep the pages the same on the new domain.<\/p>\n\n\n\n

You don't want to redirect all the pages of the old domain to the homepage of the new domain, you want them to go to the correct internal pages.<\/p>\n\n\n\n

I've had this exact question from three different people in the last week, so I figured it deserved a tutorial.<\/p>\n\n\n\n

If you're just trying to redirect from the http version to https version of the same domain or the www to non-www (or vice versa), I have a tutorial on redirecting to the same domain<\/a>.<\/p>\n\n\n\n

How\u00a0to redirect all pages to another domain using .htaccess:<\/h2>\n\n\n\n
  1. Set the nameservers<\/a> of the old domain to somewhere you have cPanel hosting<\/li>
  2. Go into cPanel<\/a> and add the old domain<\/li>
  3. Add<\/a> a .htaccess file that 301 redirects all the internal pages to the new domain<\/li>
  4. Add<\/a> a blank index.php for extra safety.<\/li><\/ol>\n\n\n\n

    If you already know the steps and are just looking for the htaccess code, it is:<\/p>\n\n\n\n

    RewriteEngine on\nRewriteRule ^(.*)$ https:\/\/newdomain.com\/$1 [R=301,L]<\/code><\/pre>\n\n\n\n

    In this example, I have a domain, inteliwolf.com<\/em> (notice the single \"L\") that I want to redirect to intelliwolf.com<\/em> (the site you're reading this on, with the two \"L\"s).<\/p>\n\n\n\n

    Inteliwolf.com is registered at GoDaddy and I have some free space on a HostGator host that I'll use.<\/p>\n\n\n\n

    The steps are the same, no matter which registrar and host you use. The screens will just look a bit different.<\/p>\n\n\n\n

    At your domain registrar, go into the DNS Manager<\/em> for the old domain.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    You can try Domain Forwarding<\/em> if that works. I've found this takes ages to actually redirect and it has issues with redirecting internal pages.<\/p>\n\n\n\n

    We're not going to forward the domain in this tutorial. This section is just in case it works for you.<\/p><\/blockquote>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    If you did want to use Domain\u00a0Forwarding<\/em>, you put your destination domain in the Forward\u00a0To<\/em> box and select \"https:\/\/\".<\/p>\n\n\n\n

    Check Update my nameservers and DNS settings to support this change<\/em> and leave everything else as default.<\/p>\n\n\n\n

    Click save, and wait for a few hours for the DNS to propagate.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    If this works for you, you can stop the tutorial now.<\/p>\n\n\n\n

    We'll proceed with the tutorial as if you haven't done the domain forwarding.<\/p>\n\n\n\n

    Point the nameservers of the old domain to your host<\/h2>\n\n\n\n

    You might have space to add an addon domain at the same host you use for the destination domain. That's typically where I prefer to host this redirect, just to keep things in one spot.<\/p>\n\n\n\n

    It's perfectly fine for you to host the old domain where it was or at another host.<\/p>\n\n\n\n

    The main thing is it has cPanel. If it's a Windows IIS server, Parallels or something else, the implementation will be different from what's shown here.<\/p>\n\n\n\n

    In DNS Management<\/em>, click \"Change\" next to the nameservers.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Switch from Default nameservers to Custom nameservers.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    When you setup the host, you would've received an email listing the two or more nameservers for that hosting account.<\/p>\n\n\n\n

    If you can't find the email, you might be able to find it in the sidebar of your cPanel. It will probably be listed under Primary<\/em> and Secondary Nameservers<\/em>.<\/p>\n\n\n\n

    For the purpose of this tutorial, I'll be using<\/p>\n\n\n\n

    ns8439.hostgator.com\nns8440.hostgator.com<\/code><\/pre>\n\n\n\n

    There will usually be two nameservers, sometimes three or more.<\/p>\n\n\n\n

    Enter the nameservers at the domain registrar as shown and click \"Save\".<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Add the old domain to the host<\/h2>\n\n\n\n

    While the DNS is propagating, go to where you'll be hosting the old domain.<\/p>\n\n\n\n

    Assuming it's not already setup at that host, and that it's not the primary domain, set it up as an Addon Domain by going to Addon Domains<\/em>.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Enter the old domain in New Domain Name<\/em>. Everything else should be fine as default.<\/p>\n\n\n\n

    There's no reason to create a new FTP account for this domain.<\/p>\n\n\n\n

    Click \"Add Domain\".<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    If everything's good, you'll see a success message.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Add the .htaccess file to the old domain<\/h2>\n\n\n\n

    Now to add the code that will actually do the redirecting.<\/p>\n\n\n\n

    Go to File Manager<\/em>.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Navigate to the folder you added for the old domain in the Addon Domains<\/em> step.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    HostGator already had a .htaccess<\/em> file in the folder, so you just select it and click Edit<\/em>.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    If you don't have a .htaccess<\/em> file there, first check you can see hidden files, by going to Settings<\/em> (in File Manager<\/em>) and checking Show Hidden Files (dotfiles)<\/em>.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    If you still can't see a .htaccess<\/em> file in the home folder for the domain, click \"+ File\" and create one.<\/p>\n\n\n\n

    In .htaccess<\/em>, add the following code:<\/p>\n\n\n\n

    RewriteEngine on\nRewriteRule ^(.*)$ https:\/\/www.yourdomain.com\/$1 [R=301,L]<\/code><\/pre>\n\n\n\n

    The key line is RewriteRule<\/em>.<\/p>\n\n\n\n

    The line says using ^(.*)$<\/em> \"take the whole page, not including the domain...\"<\/p>\n\n\n\n

    \"... and stick it where the $1<\/em> is\".<\/p>\n\n\n\n

    So if someone goes to https:\/\/old.com\/important-page\/ the code will take important-page\/<\/em> and tack it on to the end of https:\/\/www.newdomain.com\/ so the visitor ends up on https:\/\/www.newdomain.com\/important-page\/<\/p>\n\n\n\n

    Be sure to change https:\/\/www.newdomain.com<\/em> in the code to your new domain.<\/p>\n\n\n\n

    As you can see, I've changed mine to intelliwolf.com.<\/p>\n\n\n\n

    Click \"Save Changes\".<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Add blank index.php file<\/h2>\n\n\n\n

    For an added layer of security, I don't like to leave a domain empty like this.<\/p>\n\n\n\n

    You should always add a file like index.html<\/em> or index.php<\/em> even if it's blank.<\/p>\n\n\n\n

    When you do that, if something goes wrong with the .htaccess redirect and it doesn't end up redirecting, anyone going to the old domain will just see a blank page, rather than a listing of all the files in there.<\/p>\n\n\n\n

    Click \"+ File\" to add a new file.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Call the new file index.php<\/em> and click \"Create New File\".<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    You don't have to add anything into this file. If everything goes well, no one will ever see it.<\/p>\n\n\n\n

    It may take a few hours for the redirect to start working.<\/p>\n\n\n\n

    The domain registrar has to tell all the other DNS phonebooks that your old domain is now located at the new host.<\/p>\n\n\n\n

    Once that's done, you probably won't need to touch it again. There's nothing to update and this code has worked for the 20-odd years I've been building websites.<\/p>\n\n\n\n

    How to redirect a specific page to another domain with .htaccess<\/h2>\n\n\n\n

    If you want to redirect just one page from the old domain to somewhere different, you just need one line:<\/p>\n\n\n\n

    Redirect 301 \/old-url\/ http:\/\/newdomain.com\/new-url\/<\/code><\/pre>\n\n\n\n

    Replace \/old-url\/<\/em> with whatever comes after the domain for the URL you want to redirect from.<\/p>\n\n\n\n

    Then put the full URL of the destination page.<\/p>\n\n\n\n

    You can use this independently of the domain redirect I showed at the start.<\/p>\n\n\n\n

    If, instead of redirecting the entire site, you just wanted to redirect one URL from the old domain (maybe it was on your business cards), then you could just put this line in the .htaccess<\/em> instead of the RewriteRule<\/em> line.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Redirecting pages or websites tends not to be something most web designers deal with on a regular basis. What sometimes happens is you change your domain and keep the pages the same on the new domain. You don’t want to redirect all the pages of the old domain to the homepage of the new domain,<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"\nhtaccess Redirect to Another Domain: How To Guide<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"htaccess Redirect to Another Domain: How To Guide\" \/>\n<meta property=\"og:description\" content=\"Redirecting pages or websites tends not to be something most web designers deal with on a regular basis. What sometimes happens is you change your domain and keep the pages the same on the new domain. You don't want to redirect all the pages of the old domain to the homepage of the new domain,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\" \/>\n<meta property=\"og:site_name\" content=\"Intelliwolf\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-13T14:46:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-22T10:28:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png\" \/>\n<meta name=\"author\" content=\"Mike Haydon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Haydon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\"},\"author\":{\"name\":\"Mike Haydon\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\"},\"headline\":\"How To Redirect All Pages From One Domain To Another With .htaccess\",\"datePublished\":\"2019-02-13T14:46:24+00:00\",\"dateModified\":\"2022-04-22T10:28:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\"},\"wordCount\":1179,\"commentCount\":31,\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png\",\"articleSection\":[\"Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\",\"url\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\",\"name\":\"htaccess Redirect to Another Domain: How To Guide\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png\",\"datePublished\":\"2019-02-13T14:46:24+00:00\",\"dateModified\":\"2022-04-22T10:28:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage\",\"url\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png\",\"contentUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.intelliwolf.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Server\",\"item\":\"https:\/\/www.intelliwolf.com\/category\/server\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How To Redirect All Pages From One Domain To Another With .htaccess\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.intelliwolf.com\/#website\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"name\":\"Intelliwolf\",\"description\":\"WordPress, Web Design and Coding Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.intelliwolf.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\",\"name\":\"Intelliwolf\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"width\":300,\"height\":100,\"caption\":\"Intelliwolf\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\",\"name\":\"Mike Haydon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"caption\":\"Mike Haydon\"},\"sameAs\":[\"https:\/\/intelliwolf.com\/about-mike-haydon\/\"]}]}<\/script>\n","yoast_head_json":{"title":"htaccess Redirect to Another Domain: How To Guide","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/","og_locale":"en_US","og_type":"article","og_title":"htaccess Redirect to Another Domain: How To Guide","og_description":"Redirecting pages or websites tends not to be something most web designers deal with on a regular basis. What sometimes happens is you change your domain and keep the pages the same on the new domain. You don't want to redirect all the pages of the old domain to the homepage of the new domain,","og_url":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/","og_site_name":"Intelliwolf","article_published_time":"2019-02-13T14:46:24+00:00","article_modified_time":"2022-04-22T10:28:33+00:00","og_image":[{"url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png"}],"author":"Mike Haydon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mike Haydon","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#article","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/"},"author":{"name":"Mike Haydon","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343"},"headline":"How To Redirect All Pages From One Domain To Another With .htaccess","datePublished":"2019-02-13T14:46:24+00:00","dateModified":"2022-04-22T10:28:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/"},"wordCount":1179,"commentCount":31,"publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"image":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png","articleSection":["Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/","url":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/","name":"htaccess Redirect to Another Domain: How To Guide","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage"},"image":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png","datePublished":"2019-02-13T14:46:24+00:00","dateModified":"2022-04-22T10:28:33+00:00","breadcrumb":{"@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#primaryimage","url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png","contentUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019-02-13_redirect-pages-htaccess-01-600x205.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelliwolf.com\/redirect-all-pages-domain-to-another-with-htaccess\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.intelliwolf.com\/"},{"@type":"ListItem","position":2,"name":"Server","item":"https:\/\/www.intelliwolf.com\/category\/server\/"},{"@type":"ListItem","position":3,"name":"How To Redirect All Pages From One Domain To Another With .htaccess"}]},{"@type":"WebSite","@id":"https:\/\/www.intelliwolf.com\/#website","url":"https:\/\/www.intelliwolf.com\/","name":"Intelliwolf","description":"WordPress, Web Design and Coding Tutorials","publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.intelliwolf.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.intelliwolf.com\/#organization","name":"Intelliwolf","url":"https:\/\/www.intelliwolf.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","width":300,"height":100,"caption":"Intelliwolf"},"image":{"@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343","name":"Mike Haydon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","caption":"Mike Haydon"},"sameAs":["https:\/\/intelliwolf.com\/about-mike-haydon\/"]}]}},"_links":{"self":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/679"}],"collection":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/comments?post=679"}],"version-history":[{"count":1,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/679\/revisions"}],"predecessor-version":[{"id":2668,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/679\/revisions\/2668"}],"wp:attachment":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/media?parent=679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/categories?post=679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/tags?post=679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}