{"id":7172,"date":"2011-12-28T09:02:00","date_gmt":"2011-12-28T13:02:00","guid":{"rendered":"http:\/\/www.andysowards.com\/blog\/?p=7172"},"modified":"2023-07-08T22:46:48","modified_gmt":"2023-07-09T02:46:48","slug":"how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners","status":"publish","type":"post","link":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/","title":{"rendered":"How To Redirect Visitors To Another Site Or Page &#8211; Different Techniques &#038; Explanations for Beginners"},"content":{"rendered":"<p>Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine optimization of their sites to learn about redirecting web pages. Redirecting a page holds much importance in SEO. This is because inbound links to a web page are considered by search engine ranking algorithms while ranking websites. Therefore, one must know what it is meant by redirecting a page and what are the different techniques of redirecting a page.<\/p>\n<h2>What is meant by redirecting a page?<\/h2>\n<p>Whenever a web browser or search engine crawler requests a page at a particular URL on any web site, the web server on which that site is hosted tries to locate the page at that URL so that it can return the corresponding HTML to the requester. Now if that web page exists then the server returns the HTML needed to render that page . It also returns a 200 HTTP status in the header of the response. With this status, the requesting browser or crawler gets the message that the page was found and its HTML was returned.<\/p>\n<p>Sometimes some web pages need to be deleted or moved to a new location. In such a case, a webmaster has two options. First, he can all all future requests for the old web page to be returned to a 404 HTTP status that indicates that the page could not be found. Second, he can ask the browser or search engine crawler to request the page using a new URL. There is a temporary redirect as well as a permanent redirect.<\/p>\n<h2>Advantages of redirecting web pages<\/h2>\n<p>1. First of all, a redirect lets a site to inform visitors that the page or entire site has been moved to a different web address. It also tells the visitors that the redirection process is automatic and the new address is displayed on the browser.<\/p>\n<p>2. With the help of a permanent redirect, one can perform actions like switching domains, redirecting a part of the website to a new domain or redirecting a folder on your site to a new folder.<\/p>\n<h2>Different techniques to redirect a web page<\/h2>\n<p>There are different techniques available for redirecting a web page. Some of these techniques are discussed here in detail.<\/p>\n<h3>1. Browser side redirection using Javascript<\/h3>\n<p>JavaScript can be used to redirect web pages. This technique is useful as it makes the redirection conditioned. This is how drop down menus are created. You can also redirect a page without a condition. This is used to cloak the content. By cloaking the content, it will still be interpreted by the search engines as they can penetrate through the JavaScript and at the same time users will be swiftly redirected. Redirecting a page using JavaScript is more instant than &#8216;instant&#8217; meta-refresh redirection if the code is placed in the header because meta-refresh waits for the page to load first. These days search engines know how to look for redirection in Javascript. Therefore, you can choose to encrypt the script or load it from a remote file as per your convenience.<\/p>\n<p><code>\/* example *\/<br \/>\nwindow.location = \"http:\/\/www.google.com\/\";<br \/>\n<\/code><\/p>\n<h3>2. Browser side redirection using HTML<\/h3>\n<p>You can use HTML to redirect a page. Here you can use the meta-refresh tag to redirect a page immediately or after a period of time. However, one thing that should be borne in mind is that some search engines penalize pages that use page redirection technique with short delays. This is because it could appear as a cloaking attempt. Cloaking means that human users are redirected too quickly to read the page. However, this technique can be useful to redirect to a different site of yours or directly to a sponsors page, with your referral code after 350 seconds. The idea behind this is that a surfer has your site in a stack of windows or tabs and as he closes them he will stop at the new page and look at it.<\/p>\n<p><code>\/* example *\/<br \/>\n&lt;meta http-equiv=\"REFRESH\" content=\"0;url=http:\/\/www.the-domain-you-want-to-redirect-to.com\"&gt;<br \/>\n<\/code><\/p>\n<h3>3. Browser side redirection using Flash<\/h3>\n<p>If you are comfortable working with Flash, then browser side redirection using Flash will be pretty easy for you. To create an instant redirect, you can make your own flash movie with one frame that has a single transparent area in it. Now you need to paste the relevant code into the actionscript pane for that frame. In case you want to redirect after a period of time, you can make a movie of the appropriate length and paste the code into the actionscript pane of the last frame.<\/p>\n<p><code>\/* example *\/<br \/>\nvar url:String = \"http:\/\/www.google.com\"<br \/>\nvar urlRequest:URLRequest = new URLRequest(url);<br \/>\nnavigateToURL(urlRequest, \"_blank\");<br \/>\n<\/code><\/p>\n<h3>4. Server side page redirection using PHP<\/h3>\n<p>This technique can be useful if you want to redirect to a different page depending on the outcome of a script. With the help of this technique and appropriate skills, you can redirect to a joke page on a Sunday, political news on a Monday, Books review on a Tuesday and so on. However, one thing that you should keep in mind is that you must call the function before any text or HTML is sent to the browser. Redirect will fail with an error message if you call the function after the redirect.<\/p>\n<p><code>\/* example *\/<br \/>\nheader(\"Location: http:\/\/domain.com\/\");<br \/>\n<\/code><\/p>\n<h3>5. Hidden Browser side redirection using Iframe and JavaScript<\/h3>\n<p>When it comes to search engine optimization some people are too wary of search engines finding their pages are redirected. If you are one of those then this is a good method for you. All you need to do is to put an iframe in the page you want to redirect from. After this, in the source attribute of the iframe, put the url of the page you wish to redirect to.<\/p>\n<p>When you do this, the browser loads the new page into the iframe. Then the page is executed in framebreaker and the new page is displayed in place of the one that was originally loading. Thus you can quickly redirect a page using this Javascript technique<\/p>\n<h3>6. Server side redirection using .htaccess 301 on Unix servers<\/h3>\n<p>Result Code 301 is the only way to redirect to a new page which is properly supported by search engines. It is also known as permanent redirect. With this, Google not only transfers all the traffic but also any page rank to the new page. The .htaccess files are simple text files that contain instructions for the server on your site. You can either have one such file in every directory where it is needed or a single file in the document root directory for the entire site. In case you already have a .htaccess file in your directory then you can simply add any redirects to the top of the file.<\/p>\n<p><code>\/* example *\/<br \/>\nOptions +FollowSymLinks<br \/>\nRewriteEngine on<br \/>\nRewriteRule (.*) http:\/\/www.newdomain.com\/$1 [R=301,L]<br \/>\n<\/code><\/p>\n<h3>7. Page redirection from any point in a PHP script<\/h3>\n<p>The PHP script gives you an option of redirecting your page at any given interval. You may utilize this technique if in case you stumble upon the awkward header which the script may produce sporadically.<\/p>\n<p><code>\/* example *\/<br \/>\nheader(\"Location: http:\/\/domain.com\/\");<br \/>\nexit;<br \/>\n<\/code><\/p>\n<h3>8. Server side redirection using ASP and ASP.net on windows servers<\/h3>\n<p>The only way to redirect to a new page which is properly supported by search engines is Result code 301. And it is known as the permanent redirect. It will make sure that Google transfers not only all the traffic but also any page rank to the new page.<\/p>\n<p><code>\/* example *\/<br \/>\n\/* ASP *\/<br \/>\nResponse.Status=\"301 Moved Permanently\"<br \/>\nResponse.AddHeader \"Location\",\"http:\/\/www.new-url.com\/\"<\/code><\/p>\n<p><code><code><\/code><\/code><\/p>\n<p>\/* ASP.NET *\/<\/p>\n<p><code><code><\/code><\/code><\/p>\n<p>private void Page_Load(object sender, System.EventArgs e)<br \/>\n{<br \/>\nResponse.Status = &#8220;301 Moved Permanently&#8221;;<br \/>\nResponse.AddHeader(&#8220;Location&#8221;,&#8221;http:\/\/www.new-url.com&#8221;);<br \/>\n}<\/p>\n<p><code><br \/>\n<\/code><\/p>\n<p><code><\/code><\/p>\n<p>These are some of the good techniques that you can use to redirect your web pages. Make sure that you use the right code.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine optimization of their sites to learn<\/p>\n","protected":false},"author":26,"featured_media":46415,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"footnotes":""},"categories":[180,2339,199,73,49,34],"tags":[479,4115,4116,2755,123,176,853,531,191,735,170,4117,1099,110,201,5889,5896,433,455,4110,4112,4114,186,5888,920,4108,4113,4109,4111,87,182,4107,792,1466,538,84,243,187],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Redirect Visitors To Another Site Or Page - Different Techniques &amp; Explanations for Beginners<\/title>\n<meta name=\"description\" content=\"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine\" \/>\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.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Redirect Visitors To Another Site Or Page - Different Techniques &amp; Explanations for Beginners\" \/>\n<meta property=\"og:description\" content=\"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/\" \/>\n<meta property=\"og:site_name\" content=\"Daily Business Resources for Entrepreneurs, Web Designers, &amp; Creatives by Andy Sowards\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/andysowardsfan\" \/>\n<meta property=\"article:published_time\" content=\"2011-12-28T13:02:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-09T02:46:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"335\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Pixel Crayon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@andysowards\" \/>\n<meta name=\"twitter:site\" content=\"@andysowards\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pixel Crayon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/\",\"url\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/\",\"name\":\"How To Redirect Visitors To Another Site Or Page - Different Techniques & Explanations for Beginners\",\"isPartOf\":{\"@id\":\"https:\/\/www.andysowards.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg\",\"datePublished\":\"2011-12-28T13:02:00+00:00\",\"dateModified\":\"2023-07-09T02:46:48+00:00\",\"author\":{\"@id\":\"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/192d9bc8b6b4407a583b707fd1b75e0f\"},\"description\":\"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine\",\"breadcrumb\":{\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage\",\"url\":\"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg\",\"contentUrl\":\"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg\",\"width\":500,\"height\":335},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.andysowards.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Redirect Visitors To Another Site Or Page &#8211; Different Techniques &#038; Explanations for Beginners\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/#website\",\"url\":\"https:\/\/www.andysowards.com\/blog\/\",\"name\":\"Daily Business Resources for Entrepreneurs, Web Designers, &amp; Creatives by Andy Sowards\",\"description\":\"Design Inspiration &amp; Business Resources for Creatives\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.andysowards.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/192d9bc8b6b4407a583b707fd1b75e0f\",\"name\":\"Pixel Crayon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/420543e4f277f81ac5cd25843faf728a?s=96&r=pg\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/420543e4f277f81ac5cd25843faf728a?s=96&r=pg\",\"caption\":\"Pixel Crayon\"},\"description\":\"Mark Wilston is a Content Writer and marketing professional working with PixelCrayons, a reputed Custom web design &amp; development company India offering offshore cms, ecommerce and mobile apps development services.\",\"url\":\"https:\/\/www.andysowards.com\/blog\/author\/markwilston2\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Redirect Visitors To Another Site Or Page - Different Techniques & Explanations for Beginners","description":"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine","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.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/","og_locale":"en_US","og_type":"article","og_title":"How To Redirect Visitors To Another Site Or Page - Different Techniques & Explanations for Beginners","og_description":"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine","og_url":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/","og_site_name":"Daily Business Resources for Entrepreneurs, Web Designers, &amp; Creatives by Andy Sowards","article_publisher":"http:\/\/facebook.com\/andysowardsfan","article_published_time":"2011-12-28T13:02:00+00:00","article_modified_time":"2023-07-09T02:46:48+00:00","og_image":[{"width":500,"height":335,"url":"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg","type":"image\/jpeg"}],"author":"Pixel Crayon","twitter_card":"summary_large_image","twitter_creator":"@andysowards","twitter_site":"@andysowards","twitter_misc":{"Written by":"Pixel Crayon","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/","url":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/","name":"How To Redirect Visitors To Another Site Or Page - Different Techniques & Explanations for Beginners","isPartOf":{"@id":"https:\/\/www.andysowards.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage"},"image":{"@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage"},"thumbnailUrl":"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg","datePublished":"2011-12-28T13:02:00+00:00","dateModified":"2023-07-09T02:46:48+00:00","author":{"@id":"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/192d9bc8b6b4407a583b707fd1b75e0f"},"description":"Redirecting web pages is an oft used term in search engine optimization. In fact, it is important for all webmasters carrying out search engine","breadcrumb":{"@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#primaryimage","url":"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg","contentUrl":"https:\/\/www.andysowards.com\/blog\/assets\/How-To-Redirect-Visitors-To-Another-Site-Or-Page-\u2013-Different-Techniques-Explanations-for-Beginners.jpg","width":500,"height":335},{"@type":"BreadcrumbList","@id":"https:\/\/www.andysowards.com\/blog\/2011\/how-to-redirect-visitors-to-another-site-or-page-different-techniques-explanations-for-beginners\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.andysowards.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Redirect Visitors To Another Site Or Page &#8211; Different Techniques &#038; Explanations for Beginners"}]},{"@type":"WebSite","@id":"https:\/\/www.andysowards.com\/blog\/#website","url":"https:\/\/www.andysowards.com\/blog\/","name":"Daily Business Resources for Entrepreneurs, Web Designers, &amp; Creatives by Andy Sowards","description":"Design Inspiration &amp; Business Resources for Creatives","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.andysowards.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/192d9bc8b6b4407a583b707fd1b75e0f","name":"Pixel Crayon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.andysowards.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/420543e4f277f81ac5cd25843faf728a?s=96&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/420543e4f277f81ac5cd25843faf728a?s=96&r=pg","caption":"Pixel Crayon"},"description":"Mark Wilston is a Content Writer and marketing professional working with PixelCrayons, a reputed Custom web design &amp; development company India offering offshore cms, ecommerce and mobile apps development services.","url":"https:\/\/www.andysowards.com\/blog\/author\/markwilston2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/posts\/7172"}],"collection":[{"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/comments?post=7172"}],"version-history":[{"count":1,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/posts\/7172\/revisions"}],"predecessor-version":[{"id":46416,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/posts\/7172\/revisions\/46416"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/media\/46415"}],"wp:attachment":[{"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/media?parent=7172"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/categories?post=7172"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.andysowards.com\/blog\/wp-json\/wp\/v2\/tags?post=7172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}