{"id":404,"date":"2021-07-27T18:39:44","date_gmt":"2021-07-27T18:39:44","guid":{"rendered":"https:\/\/www.reselhost.com.ar\/base\/?p=404"},"modified":"2021-07-27T18:39:44","modified_gmt":"2021-07-27T18:39:44","slug":"como-crear-una-redireccion-por-el-htaccess","status":"publish","type":"post","link":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/","title":{"rendered":"C\u00f3mo crear una redirecci\u00f3n por el htaccess"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p>Hay varias maneras de redirigir los accesos de su sitio.<\/p>\n\n\n\n<p><br><br>La idea de este art\u00edculo es s\u00f3lo orientar a los usuarios con c\u00f3digos listos, pero es de responsabilidad total del usuario de esos sistemas probarlos. Cualquier problema referente a ellos es de total responsabilidad del cliente.<\/p>\n\n\n\n<p><br><br>Conozca algunos de ellos:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Redirecci\u00f3n del dominio principal de la cuenta:&nbsp;<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>RedirectMatch ^\/$ http:\/\/dominio.com\/carpeta<\/strong><br>Redirecciona \u201cwww.dominio.com\u201d para \u201cwww.dominio.com\/carpeta\u201d<br><strong>Redirect 301 \/pagina.html http:\/\/www.sudominio.com\/nuevapagina.html<\/strong><br>Redirecciona&nbsp;el acceso al archivo\u201cpagina.html\u201d para \u201chttp:\/\/www.seudominio.com\/nuevapagina.html\u201d<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Redirect 301 \/ http:\/\/www.dominio.com\/<\/strong><br>Redireccionael acceso de su cuenta a la direcci\u00f3n&nbsp;\u201chttp:\/\/www.dominio.com\/\u201d<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>RedirectMatch 301 (.*)\\.html$ http:\/\/www.seudominio.com$1.php<\/strong><br>Si ha cambiado todos sus archivos de extensi\u00f3n \u00ab.html\u00bb a \u00ab.php\u00bb y tiene v\u00ednculos antiguos con referencias a los \u00ab.html\u00bb, puede evitar que el usuario accede a una p\u00e1gina que ya no existe con esta l\u00ednea; Redirecciona cualquier acceso a un \u00ab.html\u00bb sustituyendo \u00ab.html\u00bb a \u00ab.php\u00bb.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Options +FollowSymLinks<\/strong><br><strong>RewriteEngine on<\/strong><br><strong>RewriteCond %{HTTP_HOST} .<\/strong><br><strong>RewriteCond %{HTTP_HOST} !^sitio\\.com\\.ar<\/strong><br><strong>RewriteRule (.*) http:\/\/sitio.com.ar\/$1 [R=301,L]<\/strong><\/p>\n\n\n\n<p><br>Quita el \u00abwww\u00bb de la direcci\u00f3n de acceso, es decir, redirecciona a quien accedi\u00f3 por la direcci\u00f3n \u00abwww.susitio.com.ar\u00bb para \u00absusitio.com.ar\u00bb; Esto es bueno para estandarizar el acceso a su sitio y ayuda en la indexaci\u00f3n de los buscadores, haci\u00e9ndolos indexar s\u00f3lo enlaces sin \u00abwww\u00bb.<\/p>\n\n\n\n<p><br>Para cambiar la l\u00ednea 4 (dominio, en el ejemplo de sitio \\ .com \\ .ar), agregue \u00ab\\\u00bb antes de cada \u00ab.\u00bb, El \u00ab.\u00bb Se interpretar\u00e1 como punto y no parte de una expresi\u00f3n regular.<\/p>\n\n\n\n<p><br>Ejemplo: cambiando sitio.com a misitio.net.ar.test.example (suponiendo que exista este dominio):&nbsp; <\/p>\n\n\n\n<p><strong>RewriteCond %{HTTP_HOST} !^misitio\\.net\\.ar\\.test\\.exempl<\/strong>e<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Options +FollowSymLinks<\/strong><br><strong>RewriteEngine on<\/strong><br><strong>RewriteCond %{HTTP_HOST} ^susitioe.com.ar [NC]<\/strong><br><strong>RewriteRule ^(.*)$ http:\/\/www.susitio.com.ar\/$1 [L,R=301]<\/strong><\/p>\n\n\n\n<p><strong><br><\/strong><br>A\u00f1ade \u00abwww\u00bb a la direcci\u00f3n accedida sin el \u00abwww\u00bb.&nbsp;La idea de estandarizar surge de la misma idea del c\u00f3digo anterior a ese.<br><\/p>\n\n\n\n<p><strong>Options +FollowSymLinks<\/strong><br><strong>RewriteEngine on<\/strong><br><strong>RewriteCond %{THE_REQUEST} ^[A-Z]{3, 9}\\ \/.*index\\.php\\ HTTP\/<\/strong><br><strong>RewriteRule ^(.*)index\\.php$ \/$1 [R=301,L]<\/strong><\/p>\n\n\n\n<p><strong><br><\/strong><br>Esconde el acceso al archivo \u00ab.index.php\u00bb a \u00ab\/\u00bb.<br>Ejemplos: <strong>www.dominio.com.ar\/index.php&gt; www.dominio.com;&nbsp;www.misitio.com.ar\/test\/index.php&gt; www.misitio.com.ar\/test\/<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>DirectoryIndex paginainicial.php<\/strong><br>Si se coloca en un directorio determinado, hace que al acceder a ese directorio, en lugar del servidor enviar el acceso a un archivo del tipo \u00abindex\u00bb, como es el predeterminado, se env\u00eda a \u00abpaginainicial.php\u00bb, como si redefiniera el nombre&nbsp;del archivo \u00abindex.php\u00bb.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>RewriteEngine On<\/strong><br><strong>RewriteCond %{SERVER_PORT} 80<\/strong><br><strong>RewriteRule ^(.*)$ https:\/\/www.misitioseguro.com.ar\/$1 [R,L]<\/strong><\/p>\n\n\n\n<p><strong><br><\/strong><br>Reenv\u00eda el acceso a su sitio web a trav\u00e9s del \u00abhttp\u00bb para el \u00abhttps\u00bb.<br>Por ejemplo: http:\/\/www.dominio.com&gt; https:\/\/www.dominio.com.ar\/<\/p>\n\n\n\n<p><br><br><strong>Redirecionar para Carpeta<\/strong><br><\/p>\n\n\n\n<p><strong>RewriteEngine on<br>RewriteCond %{HTTP_HOST} ^su-dominio.com$ [NC,OR]<br>RewriteCond %{HTTP_HOST} ^www.su-dominio.com$<br>RewriteCond %{REQUEST_URI} !carpeta\/<br>RewriteRule (.*) \/carpeta\/$1 [L]<\/strong><\/p>\n\n\n\n<p><br>En las l\u00edneas anteriores, se debe sustituir lo siguiente:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>su-dominio.com \u2013<\/strong>&nbsp;Escriba su propio nombre de dominio<br><strong>carpeta \u2013<\/strong>&nbsp;Escriba el nombre de la subcarpeta donde est\u00e1 su sitio<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hay varias maneras de redirigir los accesos de su sitio. La idea de este art\u00edculo es s\u00f3lo orientar a los usuarios con c\u00f3digos listos, pero es de responsabilidad total del usuario de esos sistemas probarlos. Cualquier problema referente a ellos es de total responsabilidad del cliente. Conozca algunos de ellos: Redirecci\u00f3n del dominio principal de [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[50,67],"class_list":["post-404","post","type-post","status-publish","format-standard","hentry","category-htaccess","tag-cpanel","tag-htaccess"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost<\/title>\n<meta name=\"description\" content=\"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting\" \/>\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.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost\" \/>\n<meta property=\"og:description\" content=\"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\" \/>\n<meta property=\"og:site_name\" content=\"Reselhost\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/reselhost\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-27T18:39:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2021\/07\/cropped-banner04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"soporte\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@reselhost\" \/>\n<meta name=\"twitter:site\" content=\"@reselhost\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"soporte\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\"},\"author\":{\"name\":\"soporte\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/af7d6f01c24ffbebcb8e31b33db805ac\"},\"headline\":\"C\u00f3mo crear una redirecci\u00f3n por el htaccess\",\"datePublished\":\"2021-07-27T18:39:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\"},\"wordCount\":554,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/#organization\"},\"keywords\":[\"cPanel\",\"htaccess\"],\"articleSection\":[\"Htaccess\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\",\"url\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\",\"name\":\"C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost\",\"isPartOf\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/#website\"},\"datePublished\":\"2021-07-27T18:39:44+00:00\",\"description\":\"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.reselhost.co\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C\u00f3mo crear una redirecci\u00f3n por el htaccess\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#website\",\"url\":\"https:\/\/www.reselhost.co\/kb\/\",\"name\":\"Reselhost\",\"description\":\"Base de Conocimientos Hosting Reseller Hosting\",\"publisher\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.reselhost.co\/kb\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#organization\",\"name\":\"Reselhost LLC\",\"url\":\"https:\/\/www.reselhost.co\/kb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2023\/05\/logo-grande.png\",\"contentUrl\":\"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2023\/05\/logo-grande.png\",\"width\":200,\"height\":200,\"caption\":\"Reselhost LLC\"},\"image\":{\"@id\":\"https:\/\/www.reselhost.co\/kb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/reselhost\",\"https:\/\/x.com\/reselhost\",\"https:\/\/www.instagram.com\/reselhost\",\"https:\/\/www.linkedin.com\/in\/reselhost\",\"https:\/\/www.youtube.com\/@reselhost\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/af7d6f01c24ffbebcb8e31b33db805ac\",\"name\":\"soporte\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e889bfe45e57e333934f731d2f44d88bc7a50c1d0b8c9b5c48e9a69b5a775459?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e889bfe45e57e333934f731d2f44d88bc7a50c1d0b8c9b5c48e9a69b5a775459?s=96&d=mm&r=g\",\"caption\":\"soporte\"},\"sameAs\":[\"https:\/\/www.intelhost.com.co\/kb\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost","description":"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting","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.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/","og_locale":"es_ES","og_type":"article","og_title":"C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost","og_description":"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting","og_url":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/","og_site_name":"Reselhost","article_publisher":"https:\/\/www.facebook.com\/reselhost","article_published_time":"2021-07-27T18:39:44+00:00","og_image":[{"width":600,"height":400,"url":"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2021\/07\/cropped-banner04.png","type":"image\/png"}],"author":"soporte","twitter_card":"summary_large_image","twitter_creator":"@reselhost","twitter_site":"@reselhost","twitter_misc":{"Escrito por":"soporte","Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#article","isPartOf":{"@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/"},"author":{"name":"soporte","@id":"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/af7d6f01c24ffbebcb8e31b33db805ac"},"headline":"C\u00f3mo crear una redirecci\u00f3n por el htaccess","datePublished":"2021-07-27T18:39:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/"},"wordCount":554,"commentCount":0,"publisher":{"@id":"https:\/\/www.reselhost.co\/kb\/#organization"},"keywords":["cPanel","htaccess"],"articleSection":["Htaccess"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/","url":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/","name":"C\u00f3mo crear una redirecci\u00f3n por el htaccess - Reselhost","isPartOf":{"@id":"https:\/\/www.reselhost.co\/kb\/#website"},"datePublished":"2021-07-27T18:39:44+00:00","description":"C\u00f3mo crear una redirecci\u00f3n por el htaccess Base de Conocimientos Completa y Gratuita con su plan de Web Hosting y Reseller Hosting","breadcrumb":{"@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.reselhost.co\/kb\/como-crear-una-redireccion-por-el-htaccess\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.reselhost.co\/kb\/"},{"@type":"ListItem","position":2,"name":"C\u00f3mo crear una redirecci\u00f3n por el htaccess"}]},{"@type":"WebSite","@id":"https:\/\/www.reselhost.co\/kb\/#website","url":"https:\/\/www.reselhost.co\/kb\/","name":"Reselhost","description":"Base de Conocimientos Hosting Reseller Hosting","publisher":{"@id":"https:\/\/www.reselhost.co\/kb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.reselhost.co\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.reselhost.co\/kb\/#organization","name":"Reselhost LLC","url":"https:\/\/www.reselhost.co\/kb\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.reselhost.co\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2023\/05\/logo-grande.png","contentUrl":"https:\/\/www.reselhost.co\/kb\/wp-content\/uploads\/2023\/05\/logo-grande.png","width":200,"height":200,"caption":"Reselhost LLC"},"image":{"@id":"https:\/\/www.reselhost.co\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/reselhost","https:\/\/x.com\/reselhost","https:\/\/www.instagram.com\/reselhost","https:\/\/www.linkedin.com\/in\/reselhost","https:\/\/www.youtube.com\/@reselhost"]},{"@type":"Person","@id":"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/af7d6f01c24ffbebcb8e31b33db805ac","name":"soporte","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.reselhost.co\/kb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e889bfe45e57e333934f731d2f44d88bc7a50c1d0b8c9b5c48e9a69b5a775459?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e889bfe45e57e333934f731d2f44d88bc7a50c1d0b8c9b5c48e9a69b5a775459?s=96&d=mm&r=g","caption":"soporte"},"sameAs":["https:\/\/www.intelhost.com.co\/kb"]}]}},"_links":{"self":[{"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/posts\/404","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/comments?post=404"}],"version-history":[{"count":0,"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/posts\/404\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/media?parent=404"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/categories?post=404"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.reselhost.co\/kb\/wp-json\/wp\/v2\/tags?post=404"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}