{"id":5,"date":"2011-09-13T17:31:15","date_gmt":"2011-09-13T17:31:15","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2011\/09\/13\/using-the-ip-deny-manager\/"},"modified":"2023-12-26T17:04:31","modified_gmt":"2023-12-26T22:04:31","slug":"using-the-ip-deny-manager","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/","title":{"rendered":"Restrict access with .htaccess and the IP Blocker"},"content":{"rendered":"<p><strong>Access control<\/strong> is an important part of managing visitor access to your website. Visitors can be restricted from accessing your site by using the <strong>IP Blocker<\/strong> in your cPanel or by adding the <code>Allow<\/code> or <code>Deny<\/code> code in your <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/htaccess-file\/\" target=\"_blank\" rel=\"noopener\">.htaccess<\/a> file.<\/p>\n<p>This is especially useful when robots or malicious visitors from specific countries or domain addresses spam your site or place comments on your site that you do not want. The following sections will explain how to block IP\u2019s in your <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/htaccess-file\/\" target=\"_blank\" rel=\"noopener\">.htaccess<\/a> file and through the cPanel IP Blocker.<\/p>\n<p class=\"alert\"><strong>Important!<\/strong> If you are on a VPS or Dedicated server, you can bloack IPs globally server wide. Please <a target=\"_blank\" rel=\"noopener\">click here<\/a> to learn how.<\/p>\n<h2>Access control using your .htaccess<\/h2>\n<h3>Access control by IP address<\/h3>\n<p>The <code>Allow<\/code> and <code>Deny<\/code> directives let you allow and deny access based on the IP address or host name of the originating visitors server. The syntax is as follows:<\/p>\n<p><strong>Allows IP 122.102.1.2 access to your website<\/strong>.<\/p>\n<pre style=\"margin-left: 20px;\">Allow from 122.102.1.2<\/pre>\n<p><strong>Denys IP 25.122.6.3 access to your website<\/strong>.<\/p>\n<pre style=\"margin-left: 20px;\">Deny from 25.122.6.3<\/pre>\n<p>Adding those lines of code will prevent or give access to the user from that IP address.<\/p>\n<h3>Using <code>Order<\/code> to combine <code>Allow<\/code> and <code>Deny<\/code><\/h3>\n<div>You can combine a <code>Deny<\/code> and an <code>Allow<\/code> directive in one spot using <code>Order<\/code>. See the following code example.<\/div>\n<pre style=\"margin-left: 20px;\">Order deny,allow Deny from all Allow from 203.25.45.2<\/pre>\n<p>This allows you to be able to Deny all visitors from accessing and at the same time allowing only certain visitors access.<\/p>\n<h3>Access control by Host name<\/h3>\n<p>You can block visitors in the .htaccess using the host name of the visitor. The following is the syntax for blocking host names from accessing your site.<\/p>\n<pre style=\"margin-left: 20px;\">Deny from unwanted-domain.com<\/pre>\n<p class=\"alert\"><strong>Important! THIS IS NOT RECOMMENDED.<\/strong> If you use a host name in a <code>Deny<\/code> rule in the .htaccess, Apache will convert your Apache log into host names instead of IP addresses. This will remove your ability to see the logs with IP addresses. You will want to use the IP address instead of host name; unless, you want to check your site access by host name alone.<\/p>\n<h3>Combining <code>deny<\/code> with the IP and Host<\/h3>\n<p>You can combine the IP addresses and the host names together with the same syntax. Also, you can specify just a part of a domain. The following is the syntax for combining the IP and host name.<\/p>\n<pre style=\"margin-left: 20px;\">Deny from 192.168.205 Deny from unwanted-domain.com unwanted-domain-2.com Deny from domain-part<\/pre>\n<p>\u00a0<\/p>\n<h2>Access control using the IP Blocker<\/h2>\n<p>cPanel gives you the ability to block specific IP\u2019s from viewing and accessing your website. the following is the steps to add IP addresses to your server to block them from accessing your site.<\/p>\n<ol class=\"article_list\">\n<li><a title=\"Click here for info\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\" target=\"_blank\" rel=\"noopener\">Login into your cPanel<\/a>.<\/li>\n<li><a rel=\"lightbox-0\"><img decoding=\"async\" width=\"1024\" height=\"187\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block-1024x187.png\" class=\"optimized-lcp-image\" alt=\"Select IP deny manager cPanel\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block-1024x187.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block-300x55.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block-768x140.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png 1069w\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<p>Navigate to the <em>Security<\/em> section and click the <strong>IP Blocker<\/strong> icon. The following table explains what formats you can use to block Ips.<\/p>\n<table class=\"article_table\" border=\"0\">\n<tbody>\n<tr>\n<th colspan=\"2\" align=\"center\">IP formats (taken from cPanel)<\/th>\n<\/tr>\n<tr>\n<th>Single IP Address<\/th>\n<td>10.5.3.333 (Only this IP will be blocked)<\/td>\n<\/tr>\n<tr>\n<th>Implied Range<\/th>\n<td>10.5.3.3-10.5.3.40 (This blocks a range of IP\u2019s that fit the parameters between IP 10.5.3.3 and 10.5.3.40)<\/td>\n<\/tr>\n<tr>\n<th>CIDR Format<\/th>\n<td>10.5.3.3\/32 (This blocks all IP\u2019s in the 10.3.3 range from 10.3.3.00 to 10.3.3.32)<\/td>\n<\/tr>\n<tr>\n<th>Implied IP Address<\/th>\n<td>10. Implies 10.*.*.* (blocks all IP\u2019s starting with 10.)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u00a0<\/p><\/li>\n<li><a rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 0px 15px 15px;\" title=\"Click here to view the larger image\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_02-enter-ip.png\" alt=\"Add IP in the Deny Manager cPanel\" width=\"200\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<p>Enter the IP you want to block.<\/p><\/li>\n<li><a rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 0px 15px 15px;\" title=\"Click here to view the larger image\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_03-click-add.png\" alt=\"List of current IPs added\" width=\"200\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<p>Click the <strong>Add<\/strong> button.<\/p><\/li>\n<li><a rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 0px 15px 15px;\" title=\"Click here to view the larger image\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_04-confirmation.png\" alt=\"List of current IPs added\" width=\"200\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<p>You will be directed to a success page.<\/p>\n<p>Click <strong>Go Back<\/strong>.<\/p>\n<p>\u00a0<\/p><\/li>\n<\/ol>\n<p>\u00a0<\/p>\n<p><a rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 0px 15px 15px;\" title=\"Click here to view the larger image\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_05-blocked-list.png\" alt=\"List of current IPs added\" width=\"200\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<p>Now you will see the IP address in the blocked list. The IP will not be allowed to access your site.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Access control is an important part of managing visitor access to your website. Visitors can be restricted from accessing your site by using the IP Blocker in your cPanel or by adding the Allow or Deny code in your .htaccess file. This is especially useful when robots or malicious visitors from specific countries or domain<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"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":[4288],"tags":[],"class_list":["post-5","post","type-post","status-publish","format-standard","hentry","category-website"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Restrict access with .htaccess and the IP Blocker | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn how to block IP addresses from your website and eliminate unwanted traffic.\" \/>\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\/website\/using-the-ip-deny-manager\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Restrict access with .htaccess and the IP Blocker | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn how to block IP addresses from your website and eliminate unwanted traffic.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\" \/>\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=\"2011-09-13T17:31:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-26T22:04:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Markle\" \/>\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\/website\/using-the-ip-deny-manager\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Restrict access with .htaccess and the IP Blocker\",\"datePublished\":\"2011-09-13T17:31:15+00:00\",\"dateModified\":\"2023-12-26T22:04:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\"},\"wordCount\":536,\"commentCount\":20,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png\",\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\",\"name\":\"Restrict access with .htaccess and the IP Blocker | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png\",\"datePublished\":\"2011-09-13T17:31:15+00:00\",\"dateModified\":\"2023-12-26T22:04:31+00:00\",\"description\":\"Learn how to block IP addresses from your website and eliminate unwanted traffic.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png\",\"width\":1069,\"height\":195,\"caption\":\"Click here to view the larger image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Restrict access with .htaccess and the IP Blocker\"}]},{\"@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\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Restrict access with .htaccess and the IP Blocker | InMotion Hosting","description":"Learn how to block IP addresses from your website and eliminate unwanted traffic.","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\/website\/using-the-ip-deny-manager\/","og_locale":"en_US","og_type":"article","og_title":"Restrict access with .htaccess and the IP Blocker | InMotion Hosting","og_description":"Learn how to block IP addresses from your website and eliminate unwanted traffic.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2011-09-13T17:31:15+00:00","article_modified_time":"2023-12-26T22:04:31+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Restrict access with .htaccess and the IP Blocker","datePublished":"2011-09-13T17:31:15+00:00","dateModified":"2023-12-26T22:04:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/"},"wordCount":536,"commentCount":20,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png","articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/","name":"Restrict access with .htaccess and the IP Blocker | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png","datePublished":"2011-09-13T17:31:15+00:00","dateModified":"2023-12-26T22:04:31+00:00","description":"Learn how to block IP addresses from your website and eliminate unwanted traffic.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/09\/website_how-to_deny-ip-manager_01-click-ip-block.png","width":1069,"height":195,"caption":"Click here to view the larger image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-ip-deny-manager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Restrict access with .htaccess and the IP Blocker"}]},{"@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\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/5","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=5"}],"version-history":[{"count":7,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/5\/revisions"}],"predecessor-version":[{"id":108603,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/5\/revisions\/108603"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=5"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=5"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}