{"id":2225,"date":"2017-08-10T13:16:52","date_gmt":"2017-08-10T17:16:52","guid":{"rendered":"https:\/\/www.pair.com\/support\/kb\/?p=2225"},"modified":"2023-08-04T09:47:13","modified_gmt":"2023-08-04T13:47:13","slug":"block-hotlinking-with-htaccess","status":"publish","type":"ht_kb","link":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/","title":{"rendered":"Block Hotlinking with .htaccess"},"content":{"rendered":"\n<p><span class=\"s1\"><a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/shared-hosting\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px;font-weight:bold; border-radius:3px;\">Shared<\/p><\/a> <a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/vps\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px;font-weight:bold; border-radius:3px;\">VPS<\/p><\/a> <a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/qs-dedicated\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px; font-weight:bold; border-radius:3px;\">Dedicated<\/p><\/a><\/span><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is Hotlinking?<\/h3>\n\n\n\n<p><span style=\"font-weight: 400;\">\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. <\/span><span style=\"font-weight: 400;\">Even if they don't have any malicious intent, hotlinking steals bandwidth from your server.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">When someone does this, bandwidth will be used on <\/span><i><span style=\"font-weight: 400;\">your<\/span><\/i><span style=\"font-weight: 400;\"> end every time someone views the resource on the other site. <\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">For certain hosting account types, bandwidth is limited. If this is the case, using over the designated amount will cause an over-usage fee or a decline in site functionality.<\/span><a name=\"howTo\"><\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Block Hotlinking in <span style=\"font-family: monospace;\">.htaccess<\/span>\u00a0<span class=\"Apple-converted-space\">\u00a0<\/span><\/h3>\n\n\n\n<p><span style=\"font-weight: 400;\">Luckily, you can block people from hotlinking in your <span style=\"font-family: monospace;\">.htaccess<\/span> file. For help finding your <span style=\"font-family: monospace;\">.htaccess<\/span> file in the ACC, check out our article, <\/span><a href=\"https:\/\/www.pair.com\/support\/kb\/accessing-your-htaccess-file\/\"><span style=\"font-weight: 400;\">Accessing Your <span style=\"font-family: monospace;\">.htaccess<\/span> File<\/span><\/a><span style=\"font-weight: 400;\">.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Once you\u2019ve found your <span style=\"font-family: monospace;\">.htaccess<\/span> file, you\u2019re going to add a couple lines of code to disable hotlinking from your site.<\/span><a name=\"stopAll\"><\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Stop All Hotlinking<\/h4>\n\n\n\n<p><span style=\"font-weight: 400;\">This blocks all hotlinking to your server. A 404 will be displayed in its place.<\/span> For only HTTP links, use this code: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">RewriteEngine on\n\nRewriteCond %{HTTP_REFERER} !^$\n\nRewriteCond %{HTTP_REFERER} !^http:\/\/(www\\.)?siteName.com\/.*$ [NC]\n\nRewriteRule \\.(gif|jpg|jpeg|mp3|png|pdf|zip)$ - [F]<\/pre>\n\n\n\n<p>If you would like to use both HTTP and HTTPS links, use the following code: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">RewriteEngine on\n\nRewriteCond %{HTTP_REFERER} !^$\n\nRewriteCond %{HTTP_REFERER} !^http:\/\/(www\\.)?siteName.com\/.*$ [NC]\n\nRewriteCond %{HTTP_REFERER} !^https:\/\/(www\\.)?siteName.com\/.*$ [NC]\n\nRewriteRule \\.(gif|jpg|jpeg|mp3|png|pdf|zip)$ - [F]<\/pre>\n\n\n\n<p>Before you use the code, make sure to customize it for your website. Complete the following items to ensure the code will work with your website: <\/p>\n\n\n\n<ul>\n<li>Replace <span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong><code>siteName.com<\/code>\/<\/strong><\/span> in the above code with your site's URL. <\/li>\n\n\n\n<li>Remove <span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><code><strong>RewriteCond %{HTTP_REFERER} !^$<\/strong><\/code><\/span> if you want to block blank referers. See the <a href=\"#how-the-code-works\" target=\"_blank\" rel=\"noreferrer noopener\">How the Code Works section<\/a> for more information about blank referers. <\/li>\n\n\n\n<li>Add or remove the file types in the last line. Separate file types with a <kbd>|<\/kbd><\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\">How the Code Works<\/h5>\n\n\n\n<p><span style=\"font-weight: 400;\">This code functions by checking the URL trying to summon the resource. If it comes from the desired URL, the resources will be loaded for viewing.The desired URL is determined <\/span>by the lines below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>RewriteCond %{HTTP_REFERER} !^http:\/\/(www\\.)?siteName.com\/.*$ &#091;NC]\n\nRewriteCond %{HTTP_REFERER} !^https:\/\/(www\\.)?siteName.com\/.*$ &#091;NC]<\/code><\/pre>\n\n\n\n<p><span style=\"font-weight: 400;\">If the URL does not match the URL listed in the code (in this case \"siteName.com\"), the resources will not load, and a 404 will display in its place. &nbsp;You want the <\/span>\"siteName.com\"<span style=\"font-weight: 400;\"> in the code to match your domain. <\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">The following line allows \u201cblank referers:\u201d<\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>RewriteCond %{HTTP_REFERER} !^$<\/code><\/pre>\n\n\n\n<p><span style=\"font-weight: 400;\">Blank referers are visitors to <\/span><i><span style=\"font-weight: 400;\">your <\/span><\/i><span style=\"font-weight: 400;\">website who have a firewall or antivirus system. Since this code relies on checking the URL, a firewall or antivirus will sometimes thwart this inquiry. Most hotlinking will still be rejected by the script if you allow blank referers. Allowing blank referers is optional, but if you don\u2019t, those people will not be able to view your site. <\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">If you want to block blank referers, simply take out the second line of the code. Note that this will also keep images from being directly accessed by typing in their URL.<\/span><\/p>\n\n\n    \t\t<div class=\"hts-messages hts-messages--success   hts-messages--withicon \"   >\r\n    \t\t\t    \t\t\t    \t\t\t\t<p>\r\n    \t\t\t\t\t<b>Fun Fact:<\/b><span style=\"font-weight: 400;\"> \u201cReferer\u201d is purposely misspelled because the computer scientist who coined the term misspelled the word in his original proposal.<\/span>    \t\t\t\t<\/p>\r\n    \t\t\t    \t\t\t\r\n    \t\t<\/div><!-- \/.ht-shortcodes-messages -->\r\n    \t\t\n\n\n\n<p><span style=\"font-weight: 400;\">The last line establishes which file types can\u2019t be hotlinked:<\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>RewriteRule \\.(gif|jpg|jpeg|mp3|png|pdf|zip)$ - &#091;F]<\/code><\/pre>\n\n\n\n<p><span style=\"font-weight: 400;\"> Enter the file extensions you want to be protected in the parenthesis. Separate each file type with a vertical bar ( <kbd>|<\/kbd> ).<\/span><a name=\"showDiff\"><\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Show Different Content When Your Resources are Hotlinked<\/h4>\n\n\n\n<p><span style=\"font-weight: 400;\">This blocks hotlinks to your content and instead displays a resource of your choice in its place. For example, you may instruct <span style=\"font-family: monospace;\">.htaccess<\/span> to display a custom error image. <\/span><\/p>\n\n\n    \t\t<div class=\"hts-messages hts-messages--alert   hts-messages--withicon \"   >\r\n    \t\t\t    \t\t\t    \t\t\t\t<p>\r\n    \t\t\t\t\tThis approach will still use some of your bandwidth.    \t\t\t\t<\/p>\r\n    \t\t\t    \t\t\t\r\n    \t\t<\/div><!-- \/.ht-shortcodes-messages -->\r\n    \t\t\n\n\n\n<p><span style=\"font-weight: 400;\">The error image would only display when someone tries to hotlink to your resources. Your server images are safe from hotlinking and the <span style=\"font-family: monospace;\">.htaccess<\/span> server would hand the hotlink an error image every time someone tries to view it. <\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><span style=\"font-weight: 400;\">RewriteEngine on<\/span>\n\n<span style=\"font-weight: 400;\">RewriteCond %{HTTP_REFERER} !^$<\/span>\n\n<span style=\"font-weight: 400;\">RewriteCond %{HTTP_REFERER} !^<\/span><a href=\"about:blank\"><span style=\"font-weight: 400;\">http:\/\/(www\\.)?siteName.com\/.*$<\/span><\/a><span style=\"font-weight: 400;\"> [NC]<\/span>\n\n<span style=\"font-weight: 400;\">RewriteRule \\.(gif|jpg)$ http:\/\/www.siteName.com\/customError.jpg [R,L]<\/span><\/pre>\n\n\n\n<p><span style=\"font-weight: 400;\">In the third line, replace <\/span><span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong>siteName.com<\/strong><\/span><span style=\"font-weight: 400;\"> with your domain name. <\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">The fourth line - the <\/span><span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong>RewriteRule<\/strong><\/span><span style=\"font-weight: 400;\"> line - establishes the type of hotlinks to block and replace, as well as what to replace the hotlink with. <\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">In this line, replace <\/span><span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong>(gif\\jpg)<\/strong><\/span><span style=\"font-weight: 400;\"> with the file types you want to be replaced. All hotlinks that try to establish a link to one of these file types will receive the replacement image.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Also, replace <\/span><span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong>http:\/\/www.siteName.com<\/strong><\/span><span style=\"font-weight: 400;\"> with your own site URL and <\/span><span style=\"font-weight: 400; font-family: monospace; color: #236a96;\"><strong>customError.jpg<\/strong> <\/span><span style=\"font-weight: 400;\">with the filename of the replacement image. <\/span><br><span style=\"font-weight: 400;\">Once you have finished inputting your hotlink blocking code into the <span style=\"font-family: monospace;\">.htaccess<\/span> file, click <\/span><b>Save Changes<\/b><span style=\"font-weight: 400;\">. Now hotlinks will be blocked from your site. <\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Hotlinking? \u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don&#8217;t have any malicious intent, hotlinking steals bandwidth from your server. When someone does this, bandwidth will be used on your end every&#8230;<\/p>\n","protected":false},"author":11,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":[],"ht-kb-category":[4],"ht-kb-tag":[178,176,177],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.8.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Block Hotlinking with .htaccess - Knowledge Base - Pair Networks<\/title>\n<meta name=\"description\" content=\"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don&#039;t have any malicious intent, hotlinking steals bandwidth from your server.\" \/>\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.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Block Hotlinking with .htaccess - Knowledge Base - Pair Networks\" \/>\n<meta property=\"og:description\" content=\"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don&#039;t have any malicious intent, hotlinking steals bandwidth from your server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Pair Networks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/pairnetworks\/\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-04T13:47:13+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@pairNetworks\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/\",\"name\":\"Block Hotlinking with .htaccess - Knowledge Base - Pair Networks\",\"isPartOf\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#website\"},\"datePublished\":\"2017-08-10T17:16:52+00:00\",\"dateModified\":\"2023-08-04T13:47:13+00:00\",\"description\":\"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don't have any malicious intent, hotlinking steals bandwidth from your server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pair.com\/support\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Block Hotlinking with .htaccess\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#website\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/\",\"name\":\"Knowledge Base - Pair Networks\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.pair.com\/support\/kb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#organization\",\"name\":\"Pair Networks\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg\",\"contentUrl\":\"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg\",\"width\":360,\"height\":360,\"caption\":\"Pair Networks\"},\"image\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/pairnetworks\/\",\"https:\/\/twitter.com\/pairNetworks\",\"https:\/\/www.instagram.com\/pairnetworks\/\",\"https:\/\/www.linkedin.com\/company\/2269676\/\",\"https:\/\/www.pinterest.com\/pairnetworksinc\/pins\/\",\"https:\/\/www.youtube.com\/user\/pairnetworks\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Block Hotlinking with .htaccess - Knowledge Base - Pair Networks","description":"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don't have any malicious intent, hotlinking steals bandwidth from your server.","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.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/","og_locale":"en_US","og_type":"article","og_title":"Block Hotlinking with .htaccess - Knowledge Base - Pair Networks","og_description":"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don't have any malicious intent, hotlinking steals bandwidth from your server.","og_url":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/","og_site_name":"Knowledge Base - Pair Networks","article_publisher":"https:\/\/www.facebook.com\/pairnetworks\/","article_modified_time":"2023-08-04T13:47:13+00:00","twitter_card":"summary_large_image","twitter_site":"@pairNetworks","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/","url":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/","name":"Block Hotlinking with .htaccess - Knowledge Base - Pair Networks","isPartOf":{"@id":"https:\/\/www.pair.com\/support\/kb\/#website"},"datePublished":"2017-08-10T17:16:52+00:00","dateModified":"2023-08-04T13:47:13+00:00","description":"\u201cHotlinking\u201d is when someone links to your site\u2019s resources, such as videos or images, and displays it on a different site. Even if they don't have any malicious intent, hotlinking steals bandwidth from your server.","breadcrumb":{"@id":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pair.com\/support\/kb\/block-hotlinking-with-htaccess\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pair.com\/support\/kb\/"},{"@type":"ListItem","position":2,"name":"Block Hotlinking with .htaccess"}]},{"@type":"WebSite","@id":"https:\/\/www.pair.com\/support\/kb\/#website","url":"https:\/\/www.pair.com\/support\/kb\/","name":"Knowledge Base - Pair Networks","description":"","publisher":{"@id":"https:\/\/www.pair.com\/support\/kb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pair.com\/support\/kb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.pair.com\/support\/kb\/#organization","name":"Pair Networks","url":"https:\/\/www.pair.com\/support\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg","contentUrl":"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg","width":360,"height":360,"caption":"Pair Networks"},"image":{"@id":"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/pairnetworks\/","https:\/\/twitter.com\/pairNetworks","https:\/\/www.instagram.com\/pairnetworks\/","https:\/\/www.linkedin.com\/company\/2269676\/","https:\/\/www.pinterest.com\/pairnetworksinc\/pins\/","https:\/\/www.youtube.com\/user\/pairnetworks"]}]}},"_links":{"self":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2225"}],"collection":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/comments?post=2225"}],"version-history":[{"count":15,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2225\/revisions"}],"predecessor-version":[{"id":9292,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2225\/revisions\/9292"}],"wp:attachment":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/media?parent=2225"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb-category?post=2225"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb-tag?post=2225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}