{"id":139472,"date":"2018-08-20T13:46:18","date_gmt":"2018-08-20T13:46:18","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=139472"},"modified":"2024-02-29T10:07:05","modified_gmt":"2024-02-29T10:07:05","slug":"create-multiple-websites-in-magento2-and-access-them-with-different-domains","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/","title":{"rendered":"Create multiple websites in Magento2 and access them with different domains"},"content":{"rendered":"\n<p>In this blog we will be learning how to create multiple websites in Magento2 and access them with different domains.<\/p>\n\n\n\n<p>The magento2 provides a functionality in which you can configure different websites from same magento instance. In this blog, we will see how to do the same!<\/p>\n\n\n\n<p>We will be mapping two domains i.e.<\/p>\n\n\n\n<p><b>https:\/\/www.myprimarydomain.com<\/b> and<br><b>https:\/\/www.mysecondarydomain.com<\/b><\/p>\n\n\n\n<p>1. Install the magento and configure the server normally for the main site https:\/\/www.myprimarydomain.com<\/p>\n\n\n\n<p>2. Now, create a new website, store and store view under <b>Admin &gt; Stores &gt; Settings &gt; All Stores<\/b><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1164\" height=\"287\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\" alt=\"\" class=\"wp-image-139478\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png 1164w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config-250x62.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config-300x74.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config-768x189.png 768w\" sizes=\"(max-width: 1164px) 100vw, 1164px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>3. Go To <b>Admin &gt; Stores &gt; Settings &gt; Configuration &gt; General &gt; Web<\/b><\/p>\n\n\n\n<p>4. <b>This is the most important step as not selecting the secondary store, you can loose the access to the admin panel of the site<\/b>.<\/p>\n\n\n\n<p>Select secondary store from the store configuration at the top:<\/p>\n\n\n\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-139479\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/store-scope.png\" alt=\"\" width=\"326\" height=\"118\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/store-scope.png 326w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/store-scope-250x90.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/store-scope-300x109.png 300w\" sizes=\"(max-width: 326px) 100vw, 326px\" loading=\"lazy\" \/><br>5. Configure the <b>Base Url<\/b> and the <b>secure Base Url<\/b> according to https:\/\/www.mysecondarydomain.com and save the config.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"849\" height=\"228\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/url.png\" alt=\"\" class=\"wp-image-139480\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/url.png 849w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/url-250x67.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/url-300x81.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/url-768x206.png 768w\" sizes=\"(max-width: 849px) 100vw, 849px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>6. Now create a sub-directory(any name, lets say it secondary) at the root of the magento2 installation.<\/p>\n\n\n\n<p>7. Copy the <b>index.php<\/b> and the <b>.htaccess <\/b>files from the root of the Magento2 to the sub folder.<\/p>\n\n\n\n<p>8. Replace the code in <b>index.php<\/b>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$bootstrap = \\Magento\\Framework\\App\\Bootstrap::create(BP, $_SERVER);\n\n\/** @var \\Magento\\Framework\\App\\Http $app *\/\n\n$app = $bootstrap-&gt;createApplication(\\Magento\\Framework\\App\\Http::class);\n\n$bootstrap-&gt;run($app);<\/pre>\n\n\n\n<p><b>WITH<\/b><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$params = $_SERVER;\n\n$params&#091;\\Magento\\Store\\Model\\StoreManager::PARAM_RUN_CODE] = &#039;secondary&#039;; \/\/Webite code as same in admin panel which we entered in step 2\n\n$params&#091;\\Magento\\Store\\Model\\StoreManager::PARAM_RUN_TYPE] = &#039;website&#039;;\n\n$bootstrap = \\Magento\\Framework\\App\\Bootstrap::create(BP, $params);\n\n\/** @var \\Magento\\Framework\\App\\Http $app *\/\n\n$app = $bootstrap-&gt;createApplication(&#039;Magento\\Framework\\App\\Http&#039;);\n\n$bootstrap-&gt;run($app);<\/pre>\n\n\n\n<p>And Code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">require __DIR__ . &#039;\/app\/bootstrap.php&#039;;<\/pre>\n\n\n\n<p><b>WITH<\/b><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">require __DIR__ . &#039;\/..\/app\/bootstrap.php&#039;;<\/pre>\n\n\n\n<p>9. Now comes the role of the server management. You need to map the domain https:\/\/www.mysecondarydomain.com to \/directory of magento installation\/subfolder which we just created<\/p>\n\n\n\n<p>In my case it is: <strong>\/var\/www\/html\/secondary<\/strong><\/p>\n\n\n\n<p>10. Now you need to create&nbsp;<b>symlinks<\/b> inside the <b>new folder(secondary)<\/b> to allow the secondary site access the CSS files and other static content.<\/p>\n\n\n\n<p>Execute the following commands using the terminal in the secondary folder:<\/p>\n\n\n\n<p><b>ln -s \/home\/example\/example.com\/html\/app\/ app<\/b><\/p>\n\n\n\n<p><b>ln -s \/home\/example\/example.com\/html\/lib\/ lib<\/b><\/p>\n\n\n\n<p><b>ln -s \/home\/example\/example.com\/html\/pub\/ pub<\/b><\/p>\n\n\n\n<p><b>ln -s \/home\/example\/example.com\/html\/var\/ var<\/b><\/p>\n\n\n\n<p>11. Clear Magento cache, generated, deploy static content at the root of the magento installation and check the site at https:\/\/www.mysecondarydomain.com<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we will be learning how to create multiple websites in Magento2 and access them with different domains. The magento2 provides a functionality in which you can configure different websites from same magento instance. In this blog, we will see how to do the same! We will be mapping two domains i.e. https:\/\/www.myprimarydomain.com <a href=\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":212,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7347,7346,6556],"class_list":["post-139472","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-magento2-multi-domain","tag-multi-domain","tag-multi-website"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create multiple websites in Magento2 and access them with different domains - Webkul Blog<\/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:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create multiple websites in Magento2 and access them with different domains - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog we will be learning how to create multiple websites in Magento2 and access them with different domains. The magento2 provides a functionality in which you can configure different websites from same magento instance. In this blog, we will see how to do the same! We will be mapping two domains i.e. https:\/\/www.myprimarydomain.com [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\" \/>\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=\"2018-08-20T13:46:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-29T10:07:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\" \/>\n<meta name=\"author\" content=\"Vishal Verma\" \/>\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=\"Vishal Verma\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\"},\"author\":{\"name\":\"Vishal Verma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/580b43e8509d5fa4f51575bfb8bed418\"},\"headline\":\"Create multiple websites in Magento2 and access them with different domains\",\"datePublished\":\"2018-08-20T13:46:18+00:00\",\"dateModified\":\"2024-02-29T10:07:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\"},\"wordCount\":352,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\",\"keywords\":[\"magento2 multi-domain\",\"multi-domain\",\"multi-website\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\",\"name\":\"Create multiple websites in Magento2 and access them with different domains - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\",\"datePublished\":\"2018-08-20T13:46:18+00:00\",\"dateModified\":\"2024-02-29T10:07:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png\",\"width\":\"1164\",\"height\":\"287\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create multiple websites in Magento2 and access them with different domains\"}]},{\"@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\/580b43e8509d5fa4f51575bfb8bed418\",\"name\":\"Vishal Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/31e9b57460b4925d92baea86384d39a23da9408a0d216caea290a9ae75e4b310?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/31e9b57460b4925d92baea86384d39a23da9408a0d216caea290a9ae75e4b310?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vishal Verma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/vishalverma-magento279\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create multiple websites in Magento2 and access them with different domains - Webkul Blog","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\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/","og_locale":"en_US","og_type":"article","og_title":"Create multiple websites in Magento2 and access them with different domains - Webkul Blog","og_description":"In this blog we will be learning how to create multiple websites in Magento2 and access them with different domains. The magento2 provides a functionality in which you can configure different websites from same magento instance. In this blog, we will see how to do the same! We will be mapping two domains i.e. https:\/\/www.myprimarydomain.com [...]","og_url":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-08-20T13:46:18+00:00","article_modified_time":"2024-02-29T10:07:05+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png","type":"","width":"","height":""}],"author":"Vishal Verma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vishal Verma","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/"},"author":{"name":"Vishal Verma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/580b43e8509d5fa4f51575bfb8bed418"},"headline":"Create multiple websites in Magento2 and access them with different domains","datePublished":"2018-08-20T13:46:18+00:00","dateModified":"2024-02-29T10:07:05+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/"},"wordCount":352,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png","keywords":["magento2 multi-domain","multi-domain","multi-website"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/","url":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/","name":"Create multiple websites in Magento2 and access them with different domains - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png","datePublished":"2018-08-20T13:46:18+00:00","dateModified":"2024-02-29T10:07:05+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/admin-config.png","width":"1164","height":"287"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-multiple-websites-in-magento2-and-access-them-with-different-domains\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create multiple websites in Magento2 and access them with different domains"}]},{"@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\/580b43e8509d5fa4f51575bfb8bed418","name":"Vishal Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/31e9b57460b4925d92baea86384d39a23da9408a0d216caea290a9ae75e4b310?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/31e9b57460b4925d92baea86384d39a23da9408a0d216caea290a9ae75e4b310?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vishal Verma"},"url":"https:\/\/webkul.com\/blog\/author\/vishalverma-magento279\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/139472","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\/212"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=139472"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/139472\/revisions"}],"predecessor-version":[{"id":425343,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/139472\/revisions\/425343"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=139472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=139472"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=139472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}