{"id":935,"date":"2018-03-05T12:14:35","date_gmt":"2018-03-05T12:14:35","guid":{"rendered":"https:\/\/hostinguk.net\/blog\/?p=935"},"modified":"2018-03-05T12:21:14","modified_gmt":"2018-03-05T12:21:14","slug":"how-do-i-edit-my-etcetera-hosts","status":"publish","type":"post","link":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/","title":{"rendered":"Change my etcetera hosts?"},"content":{"rendered":"<p>This is a short article on the use of \/etc\/hosts &#8211; often referred to by our engineers as an edit, entry, or change to your &#8220;<em>etcetera hosts<\/em>&#8221; file. It is the simplest, most reliable, long lived solution to site previewing. The \/etc\/hosts file overrides DNS lookups. As such the world can look up your website and go to the live site, but you, with the change in place &#8211; go to another location. This means you can preview without redirection\u00a0issues and work on a new site &#8211; and it only affects that machine. It&#8217;s not a new thing, and it&#8217;s not a hard thing &#8211; so here are some outline guides on how to get these in place.<\/p>\n<p>This is in essence misdirection. DNS stays as it is. Your machine does not do DNS lookups. You get to where you want to be.<\/p>\n<p>The format of the file is simplistic. The file contains IP addresses and aliases for that. The first column contains the IP address of the server you need the traffic to go to (this cannot be a name,\u00a0cname, FQDN or URL).<\/p>\n<p>You will see something like this at the top so:<\/p>\n<blockquote><p><span style=\"color: #339966;\">127.0.0.1 localhost.localdomain localhost<\/span><\/p><\/blockquote>\n<p>You get the general idea <em>&lt;IP address&gt; &lt;alias&gt; &lt;alias&gt; &lt;alias&gt;<\/em><\/p>\n<p>At this point any lookups against localhost, or localhost.localdomain will resolve the 127.0.0.1 without the assistance of DNS as such &#8211; there are no lookups, locally, on your LAN, remotely&#8230; none. This is what we are trying to achieve. Each of these columns is separated by a space or many spaces.<\/p>\n<p>Let&#8217;s take a practical example &#8211; our main website:<\/p>\n<blockquote><p><span style=\"color: #339966;\">217.194.214.164\u00a0 \u00a0hostinguk.net\u00a0 \u00a0 www.hostinguk.net<\/span><\/p><\/blockquote>\n<p>Where this matches the DNS at the time of writing &#8211; however &#8211; here we have the IP on the left, one of the things I need to resolve, and another. On the machine this change occurs &#8211; the domain name and the domain name with subdomain will resolve to the IP on the left. This will continue until that line is removed.<\/p>\n<p>We are here because we want that to work &#8211; so let&#8217;s find out how to do that!<\/p>\n<h1>\/etc\/hosts Windows 8, 8.1 &amp; 10<\/h1>\n<p>Current versions of windows make things a little harder for us (and the attacker) to make changes to system files. None the less the process is simple enough.<\/p>\n<p>The goal here is to edit the file \/etc\/hosts which lives buried\u00a0down within your system files.<\/p>\n<p>Click on the <strong>SEARCH<\/strong> option at the bottom, and type in <strong>NOTEPAD<\/strong>.<\/p>\n<p>Right click on this, and then select the top option &#8211; <strong>RUN AS ADMINISTRATOR<\/strong>.<\/p>\n<p>Click on <strong>FILE<\/strong> and then <strong>OPEN<\/strong> &#8211; you need to open the following file:<\/p>\n<p><strong>c:\\windows\\system32\\drivers\\etc\\hosts<\/strong><\/p>\n<p>Now add the string in the format you need there &#8211; IP space URL space URL and so on.<\/p>\n<p>You are done. Force a refresh in your browser with <strong>CTRL-F5<\/strong> or restart it to start testing.<\/p>\n<h1>\/etc\/hosts Windows 7<\/h1>\n<p>The goal here is to edit the file \/etc\/hosts which lives buried\u00a0down within your system files.<\/p>\n<p>The simplest way to do this is to Click on <strong>START<\/strong> and then <strong>RUN<\/strong> and enter the following:<\/p>\n<p><strong>notepad c:\\windows\\system32\\drivers\\etc\\hosts<\/strong><\/p>\n<p>This will open up notepad with the file you need to edit. You will see any other entries you already have there. It is important to note that these files should be left there as they will be important. You are adding, and when the time comes &#8211; delete the entry you have added.<\/p>\n<p>Going to the bottom of that file, add the entry you require, and then click on <strong>FILE<\/strong>, and <strong>SAVE<\/strong>.<\/p>\n<p>You are done. Force a refresh in your browser with <strong>CTRL-F5<\/strong> or restart it to start testing.<\/p>\n<h1>\/etc\/hosts on Ubuntu or CentOS<\/h1>\n<p>While you can use a GUI &#8211; the simplest way to get this is done is just to use a terminal.<\/p>\n<p>$ <strong>sudo\u00a0vim \/etc\/hosts<\/strong><\/p>\n<p>Sudo allows your user (assuming you have that level of access) to run as an administrator &#8211; however, to do so you will need to enter your password again before doing so. So at the prompt enter <strong>your password<\/strong>. If you have access, the terminal will change and look more like an editor opening a file with entries in.<\/p>\n<p>Then go down to the last line of the file in the editor using your arrow keys and press <strong>o<\/strong> to insert a new line while switching to insert mode. Now add the string in the format you need there &#8211; IP space URL space URL and so on.<\/p>\n<p>Once you are done &#8211; <strong>ESC<\/strong>, then <strong>:wq<\/strong>\u00a0then return to write and quit. You are done. Force a refresh in your browser with CTRL-F5 or restart it to start testing.<\/p>\n<h1>\/etc\/hosts on macOS<\/h1>\n<p>This is very similar to the approach taken for a Linux machine. Open a terminal, and:<\/p>\n<p>$ <strong>sudo\u00a0vim \/etc\/hosts<\/strong><\/p>\n<p>Sudo allows your user (assuming you have that level of access) to run as an administrator &#8211; however, to do so you will need to enter your password again before doing so. So at the prompt enter <strong>your password<\/strong>. If you have access, the terminal will change and look more like an editor opening a file with entries in.<\/p>\n<p>Then go down to the last line of the file in the editor using your arrow keys and press <strong>o<\/strong> to insert a new line while switching to insert mode. Now add the string in the format you need there &#8211; IP space URL space URL and so on.<\/p>\n<p>Once you are done &#8211; <strong>ESC<\/strong>, then <strong>:wq<\/strong>\u00a0then return to write and quit.\u00a0You are done. Force a refresh in your browser with CTRL-F5 or restart it to start testing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is a short article on the use of \/etc\/hosts &#8211; often referred to by our engineers as an edit, entry, or change to your &#8220;etcetera hosts&#8221; file. It is the simplest, most reliable, long lived solution to site previewing. The \/etc\/hosts file overrides DNS lookups. As such the world can look up your website&#8230; <a class=\"moretag\" href=\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\">Keep Reading<\/a><\/p>\n","protected":false},"author":6,"featured_media":936,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[13],"tags":[204,66,111,205,206],"class_list":["post-935","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-support","tag-etc-hosts","tag-dns","tag-ns","tag-preview","tag-redirect"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Change my etcetera hosts? - Hosting UK<\/title>\n<meta name=\"description\" content=\"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Change my etcetera hosts? - Hosting UK\" \/>\n<meta property=\"og:description\" content=\"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\" \/>\n<meta property=\"og:site_name\" content=\"Hosting UK\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-05T12:14:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-05T12:21:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg?fit=670%2C576&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"670\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anthony Hogbin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anthony Hogbin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\"},\"author\":{\"name\":\"Anthony Hogbin\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\"},\"headline\":\"Change my etcetera hosts?\",\"datePublished\":\"2018-03-05T12:14:35+00:00\",\"dateModified\":\"2018-03-05T12:21:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\"},\"wordCount\":974,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg\",\"keywords\":[\"\/etc\/hosts\",\"dns\",\"NS\",\"preview\",\"redirect\"],\"articleSection\":[\"Support\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\",\"name\":\"Change my etcetera hosts? - Hosting UK\",\"isPartOf\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg\",\"datePublished\":\"2018-03-05T12:14:35+00:00\",\"dateModified\":\"2018-03-05T12:21:14+00:00\",\"author\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\"},\"description\":\"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg\",\"contentUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg\",\"width\":670,\"height\":576},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/staging.hostinguk.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Change my etcetera hosts?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#website\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/\",\"name\":\"Hosting UK\",\"description\":\"Hosting UK | Domain names | Web hosting | Dedicated Servers\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.hostinguk.net\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\",\"name\":\"Anthony Hogbin\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/author\/huk-ant\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Change my etcetera hosts? - Hosting UK","description":"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_GB","og_type":"article","og_title":"Change my etcetera hosts? - Hosting UK","og_description":"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.","og_url":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/","og_site_name":"Hosting UK","article_published_time":"2018-03-05T12:14:35+00:00","article_modified_time":"2018-03-05T12:21:14+00:00","og_image":[{"width":670,"height":576,"url":"https:\/\/i0.wp.com\/hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg?fit=670%2C576&ssl=1","type":"image\/jpeg"}],"author":"Anthony Hogbin","twitter_misc":{"Written by":"Anthony Hogbin","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#article","isPartOf":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/"},"author":{"name":"Anthony Hogbin","@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707"},"headline":"Change my etcetera hosts?","datePublished":"2018-03-05T12:14:35+00:00","dateModified":"2018-03-05T12:21:14+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/"},"wordCount":974,"commentCount":0,"image":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg","keywords":["\/etc\/hosts","dns","NS","preview","redirect"],"articleSection":["Support"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/","url":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/","name":"Change my etcetera hosts? - Hosting UK","isPartOf":{"@id":"https:\/\/staging.hostinguk.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage"},"image":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg","datePublished":"2018-03-05T12:14:35+00:00","dateModified":"2018-03-05T12:21:14+00:00","author":{"@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707"},"description":"Editing your \/etc\/hosts file allows you to change DNS for just yourself and leave the site live with DNS for everyone else. While your developer will know how to do this - you may not. Here is a quick start guide to how to do this on Windows, Linux, Apple Mac.","breadcrumb":{"@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#primaryimage","url":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg","contentUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg","width":670,"height":576},{"@type":"BreadcrumbList","@id":"https:\/\/staging.hostinguk.net\/blog\/how-do-i-edit-my-etcetera-hosts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.hostinguk.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Change my etcetera hosts?"}]},{"@type":"WebSite","@id":"https:\/\/staging.hostinguk.net\/blog\/#website","url":"https:\/\/staging.hostinguk.net\/blog\/","name":"Hosting UK","description":"Hosting UK | Domain names | Web hosting | Dedicated Servers","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.hostinguk.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707","name":"Anthony Hogbin","url":"https:\/\/staging.hostinguk.net\/blog\/author\/huk-ant\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2018\/03\/misdirection.jpg","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p63y3g-f5","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/935","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/comments?post=935"}],"version-history":[{"count":2,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/935\/revisions"}],"predecessor-version":[{"id":938,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/935\/revisions\/938"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/media\/936"}],"wp:attachment":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/media?parent=935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/categories?post=935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/tags?post=935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}