{"id":305183,"date":"2021-09-11T17:20:52","date_gmt":"2021-09-11T17:20:52","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=305183"},"modified":"2024-07-26T09:08:17","modified_gmt":"2024-07-26T09:08:17","slug":"fix-custom-modules-modsecurity-error-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/","title":{"rendered":"Fix Custom Module&#8217;s ModSecurity Error in Magento 2"},"content":{"rendered":"\n<p><strong>What is ModSecurity?<\/strong><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-purple-color\">ModSecurity is an open-source web application firewall (WAF) supported by different web servers like Apache, Nginx, and IIS<\/span>.<\/p>\n\n\n\n<p><br>ModSecurity also known as <strong>ModSec<\/strong>. It comes with a Core Rule Set (CRS) that has different rules for protecting your website from various attacks such as cross-website scripting, bad user agents, SQL injection, trojans, session hijacking, etc.<br><\/p>\n\n\n\n<p>To detect threats, the ModSecurity engine is deployed embedded within the webserver or as a proxy server in front of a web application. This allows the engine to scan incoming and outgoing HTTP communications to the endpoint. <\/p>\n\n\n\n<p>Dependent on the rule configuration the engine will decide how communications should be handled which includes the capability to pass, drop, redirect, return a given status code, execute a user script, and more.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>When and Why does the ModSecurity error happen?<\/strong><\/h3>\n\n\n\n<p>When you execute your controller or custom module&#8217;s code on your server. Each page request from your server or website will be checked against various rules to filter out malicious requests. <\/p>\n\n\n\n<p>Sometimes, due to poor website coding, ModSecurity may incorrectly determine that a certain request is malicious, and you can get an error.<\/p>\n\n\n\n<p>The error simply states that you don&#8217;t have permission to access the server or that your hosting provider is blocking that kind of requests to their servers.<\/p>\n\n\n\n<p><strong>For example:<\/strong> In admin section in a custom form we are saving some information from an editor. When it includes data with tags. Due to ModSecurity Rules, it gives 403 Forbidden error. Please refer to the attached image.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"570\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png\" alt=\"Screenshot-238\" class=\"wp-image-305184\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-300x143.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-250x119.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-768x365.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1536x730.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238.png 1812w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">ModSecurity Error Image<\/figcaption><\/figure>\n\n\n\n<p>When you get a error due to ModSecurity when your code is valid in your custom module. Then you can disabled the ModSecurity Rule for your server or website OR you can disable the ModSecurity Rule for specific URI.<\/p>\n\n\n\n<p>There are different ways to disable the ModSecurity Rules according to different web servers.<\/p>\n\n\n\n<p>Here, I am going to tell you to do that by making some changes in .htaccess file in your root directory.<\/p>\n\n\n\n<p><strong>Case 1: Disable ModSecurity for your website:<\/strong><br>This method is not highly recommended as it will turn off the whole mod_security Apache module for your website, which might not be good for your website&#8217;s security.<\/p>\n\n\n\n<p>To disable the mod_security module by using the .htaccess file do the following.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Take a backup of .htaccess file from server&#8217;s root directory.<\/li>\n\n\n\n<li>Then open .htaccess file in text editor.<\/li>\n\n\n\n<li>And add following changes in .htaccess file.<\/li>\n<\/ol>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;IfModule mod_security.c&gt;\n    SecFilterEngine Off\n    SecFilterScanPOST Off\n&lt;\/IfModule&gt;<\/pre>\n\n\n\n<p>4. Restart the apache web server.<\/p>\n\n\n\n<p><strong>Case 2. Disable ModSecurity for Specific URLs:<br><\/strong>In this method, you can disable ModSecurity for specific URLs rather than your entire website. You can specify which URLs to match via the regex in the statement as below.<br><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">### DISABLE mod_security firewall\n### Some rules are currently too strict and are blocking legitimate users\n### We only disable it for URLs that contain the regex below\n### The regex below should be placed between &quot;m#&quot; and &quot;#&quot; \n### (this syntax is required when the string contains forward slashes)\n&lt;IfModule mod_security.c&gt;\n  &lt;If &quot;%{REQUEST_URI} =~ m#\/admin\/#&quot;&gt;\n    SecFilterEngine Off\n    SecFilterScanPOST Off\n  &lt;\/If&gt;\n&lt;\/IfModule&gt;<\/pre>\n\n\n\n<p>After making changes in .htaccess file, restart the apache web server.<br>Hope this will be helpful. Thanks \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is ModSecurity? ModSecurity is an open-source web application firewall (WAF) supported by different web servers like Apache, Nginx, and IIS. ModSecurity also known as ModSec. It comes with a Core Rule Set (CRS) that has different rules for protecting your website from various attacks such as cross-website scripting, bad user agents, SQL injection, trojans, <a href=\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":249,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[12028,12026,2460,12029,12027],"class_list":["post-305183","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-403-forbidden","tag-apache","tag-magento-2","tag-modsec","tag-modsecurity"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fix Custom Module&#039;s ModSecurity Error in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix Custom Module&#039;s ModSecurity Error in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-11T17:20:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-26T09:08:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png\" \/>\n<meta name=\"author\" content=\"Khushboo Sahu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Khushboo Sahu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\"},\"author\":{\"name\":\"Khushboo Sahu\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca\"},\"headline\":\"Fix Custom Module&#8217;s ModSecurity Error in Magento 2\",\"datePublished\":\"2021-09-11T17:20:52+00:00\",\"dateModified\":\"2024-07-26T09:08:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\"},\"wordCount\":469,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png\",\"keywords\":[\"403 Forbidden\",\"Apache\",\"Magento 2\",\"ModSec\",\"ModSecurity\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\",\"name\":\"Fix Custom Module's ModSecurity Error in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png\",\"datePublished\":\"2021-09-11T17:20:52+00:00\",\"dateModified\":\"2024-07-26T09:08:17+00:00\",\"description\":\"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238.png\",\"width\":1812,\"height\":861,\"caption\":\"Screenshot-238\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fix Custom Module&#8217;s ModSecurity Error in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca\",\"name\":\"Khushboo Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Khushboo Sahu\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fix Custom Module's ModSecurity Error in Magento 2 - Webkul Blog","description":"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2","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:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Fix Custom Module's ModSecurity Error in Magento 2 - Webkul Blog","og_description":"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2","og_url":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2021-09-11T17:20:52+00:00","article_modified_time":"2024-07-26T09:08:17+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png","type":"","width":"","height":""}],"author":"Khushboo Sahu","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Khushboo Sahu","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/"},"author":{"name":"Khushboo Sahu","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca"},"headline":"Fix Custom Module&#8217;s ModSecurity Error in Magento 2","datePublished":"2021-09-11T17:20:52+00:00","dateModified":"2024-07-26T09:08:17+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/"},"wordCount":469,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png","keywords":["403 Forbidden","Apache","Magento 2","ModSec","ModSecurity"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/","name":"Fix Custom Module's ModSecurity Error in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238-1200x570.png","datePublished":"2021-09-11T17:20:52+00:00","dateModified":"2024-07-26T09:08:17+00:00","description":"Fix Custom Module\u2019s ModSecurity Error in Magento 2, how we can Fix Custom Module\u2019s ModSecurity Error in Magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/09\/Screenshot-238.png","width":1812,"height":861,"caption":"Screenshot-238"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/fix-custom-modules-modsecurity-error-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Fix Custom Module&#8217;s ModSecurity Error in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca","name":"Khushboo Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Khushboo Sahu"},"url":"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/305183","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/249"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=305183"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/305183\/revisions"}],"predecessor-version":[{"id":454931,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/305183\/revisions\/454931"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=305183"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=305183"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=305183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}