{"id":3545,"date":"2016-07-26T16:32:51","date_gmt":"2016-07-26T13:32:51","guid":{"rendered":"http:\/\/www.truehost.co.ke\/?p=3545"},"modified":"2024-06-07T12:40:16","modified_gmt":"2024-06-07T12:40:16","slug":"set-rules-redirects-htaccess-files-cpanel","status":"publish","type":"post","link":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/","title":{"rendered":"How to set up rules and redirects in .htaccess files in Cpanel"},"content":{"rendered":"<p>Htaccess file is a special text file with .htaccess extension that is created within \u00a0apache web server to configure and set up a custom directory level server environment without changing global setting of the server.<\/p>\n<p>There are several rules that can be set using .htaccess.<\/p>\n<ol>\n<li>Directory Access Authorization and authentication Rule<\/li>\n<li>Blocking Access Rules<\/li>\n<li>Custom Error Pages Rule<\/li>\n<li>Mod_Rewrite \/ Redirection Rule<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<ol>\n<li><strong>1.\u00a0\u00a0 <\/strong><strong><span style=\"text-decoration: underline;\">Directory Access Authorization and authentication<\/span><\/strong><\/li>\n<\/ol>\n<p>Allow imposing of security restriction to access of directory and sub directories. When security restriction is in place, a visitor is required to provide username and password for access.<\/p>\n<p><strong><span style=\"text-decoration: underline;\">Setting up security restriction.<\/span><\/strong><\/p>\n<ol>\n<li>Create the directory\/ folder you want to protect in the following location.<\/li>\n<\/ol>\n<p>\/home\/cpanel_user\/.htpasswds\/<\/p>\n<p><strong>e.g. for public_html\/cloudpap\u00a0 the path will be .htpasswds\/public_html\/cloudpap \/<\/strong><\/p>\n<p>2. Add a passwd file in the directory \u2013(\/.htpasswds\/public_html\/cloudpap \/) and add hashed access details using this tool &#8211; <a href=\"http:\/\/www.htaccesstools.com\/htpasswd-generator\/\">http:\/\/www.htaccesstools.com\/htpasswd-generator\/<\/a><\/p>\n<p>3. Include the following lines to .htaccess:\u00a0file<\/p>\n<p><em>AuthType Basic<br \/>\nAuthName &#8220;Cloudpap&#8221;<br \/>\nAuthUserFile \/home\/cpanel_user\/.htpasswds\/public_html\/passwd<br \/>\nrequire valid-user<\/em><\/p>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"text-decoration: underline;\">2.\u00a0 Blocking<\/span><\/strong><strong><span style=\"text-decoration: underline;\"> Access Rules<\/span><\/strong><\/p>\n<p>Allow a site administrator to prevent certain people from accessing certain sections of the website.<\/p>\n<p>Blocking rules are mostly implemented using ip address.<\/p>\n<p>To block 192.168.1.56 from accessing current directory using .htaccess \u2013 add the following lines to the .htaccess file<\/p>\n<p><em>order allow,deny<br \/>\nallow from all<br \/>\ndeny from<\/em>192.168.1.56<\/p>\n<p>&nbsp;<\/p>\n<p>To block everyone else except 192.168.1.56 from accessing current directory add the following lines on the .htaccess file.<\/p>\n<p><em>order deny,allow<br \/>\ndeny from all<br \/>\nallow from<\/em>192.168.1.56<\/p>\n<p><strong>3. <span style=\"text-decoration: underline;\">Custom Error Pages Rule<\/span><\/strong><\/p>\n<p>Custom error pages rule allow site administrator to redirect visitors to a custom page when an error occurs so that the can easily navigate to other area of the site.<\/p>\n<p>Some of the errors include 404 error, 500, 403 error among others<\/p>\n<p>Just ensure to create a file using the website theme with the respective error as the file name.<\/p>\n<p>The add the following line to .htaccess file<\/p>\n<p><em>ErrorDocument 404 \/404.html \u2013 for 404 errors<\/em><\/p>\n<p><em>ErrorDocument 403 \/403.html\u2013 for 403 errors<\/em><\/p>\n<p><em>ErrorDocument 500 \/500.html\u2013 for 500 errors<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p>4. <strong><span style=\"text-decoration: underline;\">Mod_Rewrite \/ Redirection <\/span><\/strong><strong><span style=\"text-decoration: underline;\">Rule<\/span><\/strong><\/p>\n<p>Specifies how web page url will be displayed to the site visitors. It implements temporarily and permanent redirections.<\/p>\n<p>Permanent (301) Redirect \u2013<\/p>\n<p>Most common redirect, inaddition to redirecting it directs search engines through user agents or browser that the previous url has permanently moved and\u00a0 therefore they should update their databses as well.<\/p>\n<p>301 redirect from truehost.cloud to cloudpap.com<\/p>\n<p><em>\u00a0<\/em><em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [OR]<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud$<br \/>\nRewriteRule ^\/?$ &#8220;http\\:\\\/\\\/cloudpap\\.com\\\/&#8221; [R=301,L]<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p><strong>Redirect from<\/strong>\u00a0truehost.cloud\/subfolder\u00a0<strong>to<\/strong>\u00a0cloudpap.com<\/p>\n<p><em>\u00a0<\/em><em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [OR]<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud$<br \/>\nRewriteRule ^subfolder$ &#8220;http\\:\\\/\\\/cloudpap\\.com\\\/&#8221; [R=301,L]\u00a0<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p>Temporary Redirect (302)<\/p>\n<p>Most recommended type of redirect not in the cases that the former url has changed permanently.<\/p>\n<p>302 redirect redirect the visitor or search engine to a new url but requires the browser or user agent not to cache or change from the old url.<\/p>\n<p>302 redirect from truehost.cloud to cloudpap.com<br \/>\n<strong>Temporary redirect from<\/strong>\u00a0example.com\u00a0<strong>to<\/strong>\u00a0domain.com<\/p>\n<p><em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [OR]<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud$<br \/>\nRewriteRule ^\/?$ &#8220;http\\:\\\/\\\/cloudpap\\.com\\\/&#8221; [R=302,L]<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p><strong>Redirect from<\/strong>\u00a0truehost.cloud\/subfolder\u00a0<strong>to<\/strong>\u00a0cloudpap.com<\/p>\n<p><em>\u00a0<\/em><em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [OR]<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud$<br \/>\nRewriteRule ^subfolder$ &#8220;http\\:\\\/\\\/cloudpap\\.com\\\/&#8221; [R=301,L]\u00a0<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p><strong>Other redirects performed on .htaccess<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Redirect from HTTP to HTTPS<\/strong><\/p>\n<p>for a domain e.g. , truehost.cloud<\/p>\n<p><em>\u00a0RewriteEngine On<br \/>\nRewriteCond %{HTTPS} !=on<br \/>\nRewriteRule .* https:\/\/truehost.cloud\/%{REQUEST_URI} [R,L]<\/p>\n<p><\/em>or<em><\/p>\n<p><\/em><\/p>\n<p><em>\u00a0RewriteCond %{SERVER_PORT} 80<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [OR]<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud$<br \/>\nRewriteRule ^(.*)$ https:\/\/www.truehost.cloud\/$1 [R,L]\u00a0<\/em><\/p>\n<p><strong>Redirect from non-WWW to WWW<\/strong><\/p>\n<p>for any domain within the server \u00a0.htaccess takes effect on:<br \/>\n<em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} !^www\\.<br \/>\nRewriteRule ^(.*)$ http:\/\/www.%{HTTP_HOST}\/$1 [R=301,L]\u00a0<\/em><\/p>\n<p>for a certain domain, e.g. \u00a0truehost.cloud:<br \/>\n<em>\u00a0RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^truehost\\.cloud$ [NC]<br \/>\nRewriteRule ^(.*)$ http:\/\/www.truehost.cloud\/$1 [R=301,L]\u00a0<\/em><\/p>\n<p><strong>Redirect from WWW to non-WWW<\/strong><\/p>\n<p>for any domain within the server .htaccess takes effect on:<br \/>\n<em>\u00a0RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.(.*)$ [NC]<br \/>\nRewriteRule ^(.*)$ http:\/\/%1\/$1 [R=301,L]<\/em><\/p>\n<p>for a certain domain, e.g. truehost.cloud:<br \/>\n<em>RewriteEngine On<br \/>\nRewriteCond %{HTTP_HOST} ^www\\.truehost\\.cloud [NC]<br \/>\nRewriteRule (.*) http:\/\/truehost.cloud\/$1 [R=301,L]<\/em><\/p>\n<p><strong>Changes the directory root for the main domain (truehost.cloud) to public_html\/subfolder<\/strong><\/p>\n<p><em>\u00a0RewriteEngine on<br \/>\nRewriteCond %{HTTP_HOST} ^(www.)?truehost.cloud$<br \/>\nRewriteCond %{REQUEST_URI} !^\/subfolder\/<br \/>\nRewriteCond %{REQUEST_FILENAME} !-f<br \/>\nRewriteCond %{REQUEST_FILENAME} !-d<br \/>\nRewriteRule ^(.*)$ \/subfolder\/$1<br \/>\nRewriteCond %{HTTP_HOST} ^(www.)?truehost.cloud$<br \/>\nRewriteRule ^(\/)?$ subfolder\/index.php [L]\u00a0<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Htaccess file is a special text file with .htaccess extension that is created within \u00a0apache web server to configure and set up a custom directory level server environment without changing global setting of the server. There are several rules that can be set using .htaccess. Directory Access Authorization and authentication Rule Blocking Access Rules Custom [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[258],"tags":[],"class_list":["post-3545","post","type-post","status-publish","format-standard","hentry","category-cpanel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to set up rules and redirects in .htaccess files in Cpanel -<\/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:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set up rules and redirects in .htaccess files in Cpanel -\" \/>\n<meta property=\"og:description\" content=\"Htaccess file is a special text file with .htaccess extension that is created within \u00a0apache web server to configure and set up a custom directory level server environment without changing global setting of the server. There are several rules that can be set using .htaccess. Directory Access Authorization and authentication Rule Blocking Access Rules Custom [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-26T13:32:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-07T12:40:16+00:00\" \/>\n<meta name=\"author\" content=\"kt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/\"},\"author\":{\"name\":\"kt\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/person\\\/13b0dca8f0a4699018d92ad9869668c8\"},\"headline\":\"How to set up rules and redirects in .htaccess files in Cpanel\",\"datePublished\":\"2016-07-26T13:32:51+00:00\",\"dateModified\":\"2024-06-07T12:40:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/\"},\"wordCount\":768,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"articleSection\":[\"Cpanel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/\",\"name\":\"How to set up rules and redirects in .htaccess files in Cpanel -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2016-07-26T13:32:51+00:00\",\"dateModified\":\"2024-06-07T12:40:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/set-rules-redirects-htaccess-files-cpanel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up rules and redirects in .htaccess files in Cpanel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/person\\\/13b0dca8f0a4699018d92ad9869668c8\",\"name\":\"kt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g\",\"caption\":\"kt\"},\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/author\\\/truehost\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to set up rules and redirects in .htaccess files in Cpanel -","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:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/","og_locale":"en_US","og_type":"article","og_title":"How to set up rules and redirects in .htaccess files in Cpanel -","og_description":"Htaccess file is a special text file with .htaccess extension that is created within \u00a0apache web server to configure and set up a custom directory level server environment without changing global setting of the server. There are several rules that can be set using .htaccess. Directory Access Authorization and authentication Rule Blocking Access Rules Custom [&hellip;]","og_url":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/","article_published_time":"2016-07-26T13:32:51+00:00","article_modified_time":"2024-06-07T12:40:16+00:00","author":"kt","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kt","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/#article","isPartOf":{"@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/"},"author":{"name":"kt","@id":"https:\/\/truehost.com\/support\/#\/schema\/person\/13b0dca8f0a4699018d92ad9869668c8"},"headline":"How to set up rules and redirects in .htaccess files in Cpanel","datePublished":"2016-07-26T13:32:51+00:00","dateModified":"2024-06-07T12:40:16+00:00","mainEntityOfPage":{"@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/"},"wordCount":768,"commentCount":0,"publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"articleSection":["Cpanel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/","url":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/","name":"How to set up rules and redirects in .htaccess files in Cpanel -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"datePublished":"2016-07-26T13:32:51+00:00","dateModified":"2024-06-07T12:40:16+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/set-rules-redirects-htaccess-files-cpanel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to set up rules and redirects in .htaccess files in Cpanel"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/truehost.com\/support\/#\/schema\/person\/13b0dca8f0a4699018d92ad9869668c8","name":"kt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b15c3006fe3bf174dea56e93ccc38a5ca0aa2f465be4368c6e1dc5fe306f971a?s=96&r=g","caption":"kt"},"url":"https:\/\/truehost.com\/support\/author\/truehost\/"}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/posts\/3545","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=3545"}],"version-history":[{"count":1,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/posts\/3545\/revisions"}],"predecessor-version":[{"id":11505,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/posts\/3545\/revisions\/11505"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=3545"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/categories?post=3545"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/tags?post=3545"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}