{"id":564,"date":"2013-02-08T20:46:54","date_gmt":"2013-02-09T01:46:54","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/02\/08\/disable-modsecurity-for-a-domain\/"},"modified":"2021-08-16T23:21:37","modified_gmt":"2021-08-17T03:21:37","slug":"disable-modsecurity-for-a-domain","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/","title":{"rendered":"Disable ModSecurity for a domain"},"content":{"rendered":"<p>In this article I&#8217;ll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.<\/p>\n<p>If you&#8217;re on a shared server and experiencing problem with 406 errors caused by ModSecurity you can follow my guide on how to <a href=\"\/support\/\" target=\"_blank\" rel=\"noopener noreferrer\">disable ModSecurity via cPanel Modsec Manager<\/a>.<\/p>\n<p class=\"alert\">In order to follow along with this guide, you&#8217;ll need to have <a href=\"\/support\/server\/ssh\/root-access-faq\/\" target=\"_blank\" rel=\"noopener noreferrer\">root access<\/a> to your VPS or dedicated server so that you can create the required ModSecurity file on the server, and modify the Apache configuration file.<\/p>\n<h2>Enable ModSecurity include in httpd.conf<\/h2>\n<p>Following the steps below I&#8217;ll walk you through how to modify your Apache <strong>httpd.conf<\/strong> configuration file so that you can include a ModSecurity rules file for the domain you&#8217;d like to disable ModSecurity for.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"\u201d_blank\u201d\" rel=\"noopener noreferrer\">Login to your server via SSH<\/a> as the root user.<\/li>\n<li>Make a backup of your Apache configuration with the following command: <code>cp -frp \/usr\/local\/apache\/conf\/httpd.conf{,-BAK}<\/code><\/li>\n<li>Edit your Apache <strong>httpd.conf<\/strong> file with the <strong>vim<\/strong> editor with this command: <code>vim \/usr\/local\/apache\/conf\/httpd.conf<\/code><\/li>\n<li>Once in <strong>vim<\/strong> you can type in a forward slash <strong>\/<\/strong> to enter search mode, you can then enter in the name of the domain you&#8217;d like to disable ModSecurity for and hit <strong>Enter<\/strong>&nbsp;to be dropped to that line.You should be at a <strong>&lt;VirtualHost<\/strong> entry that looks something like this:<br \/>\n<code>&lt;VirtualHost 123.123.123.123:80&gt;<br \/>\nServerName example.com<br \/>\nServerAlias www.example.com<br \/>\nDocumentRoot \/home\/userna5\/public_html<br \/>\nServerAdmin webmaster@example.com<br \/>\nUseCanonicalName Off<br \/>\nCustomLog \/usr\/local\/apache\/domlogs\/example.com combined<br \/>\nCustomLog \/usr\/local\/apache\/domlogs\/example.com-bytes_log \"%{%s}t %I .n%{%s}t %O .\"<br \/>\n## User userna5 # Needed for Cpanel::ApacheConf<br \/>\n&lt;IfModule mod_suphp.c&gt;<br \/>\nsuPHP_UserGroup userna5 userna5<br \/>\n&lt;\/IfModule&gt;<br \/>\n&lt;IfModule !mod_disable_suexec.c&gt;<br \/>\n&lt;IfModule !mod_ruid2.c&gt;<br \/>\nSuexecUserGroup userna5 userna5<br \/>\n&lt;\/IfModule&gt;<br \/>\n&lt;\/IfModule&gt;<br \/>\n&lt;IfModule mod_ruid2.c&gt;<br \/>\nRUidGid userna5 userna5<br \/>\n&lt;\/IfModule&gt;<br \/>\nScriptAlias \/cgi-bin\/ \/home\/userna5\/public_html\/cgi-bin\/<br \/>\n# To customize this VirtualHost use an include file at the following location<br \/>\n<strong style=\"color: red;\"># Include \"\/usr\/local\/apache\/conf\/userdata\/std\/2\/userna5\/example.com\/*.conf\"<\/strong><br \/>\n&lt;\/VirtualHost&gt;<br \/>\n<\/code><\/p>\n<p>You&#8217;ll want to un-comment the <strong>Include<\/strong> line by removing the pound <strong>#<\/strong> symbol from the beginning of the line at the bottom. You can do this by navigating with the arrow keys till your cursor is over the <strong>#<\/strong> symbol, then just hit <strong>Delete<\/strong> on your keyboard:<br \/>\n<code><strong style=\"color: red;\">#<\/strong> Include \"\/usr\/local\/apache\/conf\/userdata\/std\/2\/userna5\/example.com\/*.conf\"<\/code><br \/>\nSo it should end up looking like this:<br \/>\n<code>Include \"\/usr\/local\/apache\/conf\/userdata\/std\/2\/userna5\/example.com\/*.conf\"<\/code><br \/>\nNow to save the file, simply hold down <strong>Shift<\/strong> and hit <strong>ZZ<\/strong> on the keyboard, you should get this confirmation:<br \/>\n<code>\"\/usr\/local\/apache\/conf\/httpd.conf\" 785L, 30554C written<\/code><\/li>\n<li>Finally run the cPanel Apache configuration distiller, to ensure your includes remain after future cPanel updates:<br \/>\n<code>\/usr\/local\/cpanel\/bin\/apache_conf_distiller --update<\/code><br \/>\nAfter running that you should get back:<br \/>\n<code>       info [apache_conf_distiller] 'local' datastore in use (\/var\/cpanel\/conf\/apache\/local)<br \/>\nDistilled successfully<\/code><\/li>\n<\/ol>\n<h2>Create ModSecurity configuration file<\/h2>\n<p>Now that you&#8217;ve setup Apache to include a ModSecurity configuration file, you&#8217;ll next want to create the appropriate&nbsp;directory and file that it&#8217;s trying to load. Following the steps below I&#8217;ll show you how to accomplish this.<\/p>\n<ol class=\"article_list\">\n<li>Run the following command to create the directory where we&#8217;ll be placing our ModSecurity configuration file:<br \/>\n<code>mkdir -p \/usr\/local\/apache\/conf\/userdata\/std\/2\/userna5\/example.com\/<\/code><\/li>\n<li>Next use the following rule to create a ModSecurity configuration file with the <strong>SecRuleEngine<\/strong> option set to <strong>Off<\/strong>&nbsp;which disables ModSecurity completely for the domain:<br \/>\n<code>echo \"SecRuleEngine Off\" &gt; \/usr\/local\/apache\/conf\/userdata\/std\/2\/userna5\/example.com\/modsec.conf<\/code><\/li>\n<li>Finally to make the new ModSecurity configuration file active, you need to restart the Apache service gracefully with the following command:<br \/>\n<code>service httpd graceful<\/code><br \/>\nNow that Apache has been gracefully restarted the new ModSecurity configuration settings should be getting loaded, and in this case ModSecurity is completely disabled for our <strong>example.com<\/strong> domain now.<\/li>\n<\/ol>\n<p>You should now understand how to completely disable ModSecurity for a domain on your VPS or dedicated server. If you wanted to leave ModSecurity enabled, but only wanted to disable certain ModSecurity rules that are getting triggered, then you can read my guide on how to <a href=\"\/support\/security\/find-and-disable-specific-modsecurity-rules\/\" target=\"_blank\" rel=\"noopener noreferrer\">find and disable specific ModSecurity rules<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;ll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[6,4299],"tags":[],"class_list":["post-564","post","type-post","status-publish","format-standard","hentry","category-domain-names","category-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Disable ModSecurity for a domain | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;ll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.\" \/>\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.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Disable ModSecurity for a domain | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;ll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-09T01:46:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:21:37+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Disable ModSecurity for a domain\",\"datePublished\":\"2013-02-09T01:46:54+00:00\",\"dateModified\":\"2021-08-17T03:21:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\"},\"wordCount\":556,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Domain Names\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\",\"name\":\"Disable ModSecurity for a domain | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-02-09T01:46:54+00:00\",\"dateModified\":\"2021-08-17T03:21:37+00:00\",\"description\":\"In this article I'll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Disable ModSecurity for a domain\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Disable ModSecurity for a domain | InMotion Hosting","description":"In this article I'll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.","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.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/","og_locale":"en_US","og_type":"article","og_title":"Disable ModSecurity for a domain | InMotion Hosting","og_description":"In this article I'll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.","og_url":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-02-09T01:46:54+00:00","article_modified_time":"2021-08-17T03:21:37+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Disable ModSecurity for a domain","datePublished":"2013-02-09T01:46:54+00:00","dateModified":"2021-08-17T03:21:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/"},"wordCount":556,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Domain Names","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/","url":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/","name":"Disable ModSecurity for a domain | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-02-09T01:46:54+00:00","dateModified":"2021-08-17T03:21:37+00:00","description":"In this article I'll show you how you can disable ModSecurity for a domain on your VPS (Virtual Private Server) or dedicated server. ModSecurity is used to block certain types of web requests that can help prevent you from possible attacks. However certain times a legitmate request could be getting blocked by ModSecurity, so knowing how to disable it is good knowledge.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/domain-names\/disable-modsecurity-for-a-domain\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Disable ModSecurity for a domain"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/564","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=564"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/564\/revisions"}],"predecessor-version":[{"id":84968,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/564\/revisions\/84968"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=564"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=564"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=564"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}