{"id":4613,"date":"2018-08-23T16:03:56","date_gmt":"2018-08-23T16:03:56","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/08\/23\/how-to-create-a-local-dev-server-with-vagrant\/"},"modified":"2026-01-12T17:11:51","modified_gmt":"2026-01-12T22:11:51","slug":"how-to-create-a-local-dev-server-with-vagrant","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/","title":{"rendered":"How to Create a Local Dev Server with Vagrant"},"content":{"rendered":"\n<p>Now you can start developing like a pro with your own local hosting environment. You may have heard about how you can develop sites locally with your own Apache, MySQL and PHP server. It&#8217;s never been easier to install this software and have it running on your computer in a matter of seconds. In this article, we&#8217;re going to show you how you can use two applications (Vagrant and VirtualBox) to create unlimited virtual hosting environments in your own computer as a way of testing a website before <em>deploying<\/em> it to your server.<\/p>\n\n\n\n<p class=\"alert alert-danger\">The local hosting environment is not meant to be accessible through the web\u2014only on your &#8220;local&#8221; computer.<\/p>\n\n\n\n<p>Before publishing a site to the web, you&#8217;ll want to test it out first in a <i>real<\/i> server environment. Here&#8217;s how you can do it:<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li>Create a virtual &#8220;box&#8221;<\/li><li>Build your website in the box<\/li><li>Test the website in your favorite browser<\/li><li>Deploy your site to your hosting account<\/li><\/ul>\n\n\n\n<p>We&#8217;ll show you how to complete each of these steps below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why\">Why do this?<\/h2>\n\n\n\n<p>Local hosting is an important part of the web development process. Before you publish a website for the world, you&#8217;ll want to work on it privately until it&#8217;s perfect.  This is how developers work on sites, and you can do the same thing, whether you&#8217;re already a developer or just learning how to code a site for the first time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-vagrant-virtualbox\">First, Install Vagrant and VirtualBox<\/h2>\n\n\n\n<p>All you&#8217;ll need to get started is your own copy of two free programs: <a href=\"https:\/\/www.vagrantup.com\/downloads.html\">Vagrant<\/a> and <a href=\"https:\/\/www.virtualbox.org\/\">VirtualBox<\/a>. If you&#8217;re using Mac, Windows, or GNU\/Linux, these programs are free, and you can install them the way you normally install any other application. Do this first and then you can continue with the rest of this tutorial.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"finding-a-box\">Finding a &#8220;Box&#8221;<\/h2>\n\n\n\n<p>While learning how to use Vagrant, you&#8217;ll see the term &#8220;Box&#8221; used frequently. Box is just another word for virtual computer. We&#8217;re basically going to be installing a computer within your computer, complete with its own operating system. Which &#8220;Box&#8221; you&#8217;ll require for your project is up to you. But there exists a wide variety of pre-configured boxes out on the web that you can install instantly.<\/p>\n\n\n\n<p>For our needs of creating a website, we recommend you use <a href=\"https:\/\/box.scotch.io\/\">Scotch Box<\/a>, because it comes pre-installed with a fully functioning &#8220;LAMP&#8221; stack: Linux (Ubuntu OS), Apache, MySQL and PHP (all the software you need for creating a website).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-virtual-box\">How to &#8220;Provision&#8221; a New Virtual Box with Vagrant<\/h2>\n\n\n\n<p>In order to complete these steps, you&#8217;ll need to open a command line session on your computer. Your default terminal app will be sufficient. We&#8217;re going to be downloading the Scotch Box from a Github repository and creating a new directory for it. Having a directory name in my mind will help. For our example, we&#8217;ll use &#8220;new-website&#8221;, but you can make it whatever you want. This &#8220;folder&#8221; will contain your website source files.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Open a new terminal session<\/li><li>Download Scotch Box from its Github repository:\n<pre class=\"cli\">git clone https:\/\/github.com\/scotch-io\/scotch-box new-website<\/pre>\n<\/li><li>Change directories into the &#8220;new-website&#8221; directory:\n<pre class=\"cli\">cd new-website<\/pre>\n<\/li><li>Launch (or, &#8220;provision&#8221;) your new box with Vagrant:\n<pre class=\"cli\">vagrant up<\/pre>\n<\/li><\/ol>\n\n\n\n<p>Give the provisioning process a few moments to complete, and your new virtual server will be ready. Now, if you go the following IP address, you&#8217;ll see a Scotch Box page: <a href=\"https:\/\/192.168.33.10\/\">https:\/\/192.168.33.10\/<\/a>.<\/p>\n\n\n\n<p>This page is the default starter page located in the &#8220;public&#8221; directory (your document root) instead the &#8220;new-website&#8221; directory. Replace this page with your own content, and you&#8217;re ready to go.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"deploy\">How to &#8220;Deploy&#8221; Your New Site<\/h2>\n\n\n\n<p>There are as many deployment schemes as there are developers who use them. The method you choose will ultimately depend on your expertise and comfort level. Here are a few of the most common methods:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"transfer-with-FTP\">Transfer the Files with FTP<\/h3>\n\n\n\n<p>FTP (File Transfer Protocol) is one of the easiest ways to get your files from your local server to your InMotion Hosting server. We have several guides that can help refresh you on FTP setup and usage:<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"\/support\/website\/ftp\/getting-started-guide\/\">Getting started with FTP<\/a><\/li><li><a href=\"\/support\/website\/where-to-upload-files\/\">Where should I put my files?<\/a><\/li><li><a href=\"\/support\/website\/ftp\/configuring-your-site-in-filezilla\/\">How to set up FTP with Filezilla<\/a><\/li><\/ul>\n\n\n\n<p>Using the above guides will help you determine if FTP is the right deployment method for you.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"git-version-control\">Use Git Version Control<\/h3>\n\n\n\n<p>Using Git is slightly more advanced, but it can save you some time as it becomes both your version control system and deployment method all wrapped in one. Check out these guides if you&#8217;re interested in learning how to use Git for your project:<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"\/support\/git\/\">Introduction to Git<\/a><\/li><li><a href=\"\/support\/edu\/cpanel\/how-to-use-git-version-control-in-cpanel\/\">How to use Git Version Control in cPanel<\/a><\/li><li><a href=\"\/support\/website\/git\/how-to-install-git\/\">How to Install Git<\/a><\/li><\/ul>\n\n\n\n<p>You may find that while Git requires some learning the investment     will pay dividends over the long run.<\/p>\n\n\n\n<p>In order to use Git most effectively, you will need SSH access to your server with the cPanel user that owns the website, using the correct steps for your hosting plan: <a rel=\"noopener noreferrer\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\">shared<\/a> or <a href=\"https:\/\/www.inmotionhosting.com\/managed-dedicated-servers\">managed dedicated servers<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"import-database\">Import Your Database (if you&#8217;re using one)<\/h3>\n\n\n\n<p>If your site uses a database, you can import it into your server&#8217;s MySQL system by creating a new database and importing content into it. These guides will help you with that:<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"\/support\/website\/create-database\/\">How to create a MySQL database in cPanel<\/a><\/li><li><a href=\"\/support\/server\/databases\/import-database-using-phpmyadmin\/\">How to import a MySQL database using PHPMyAdmin<\/a><\/li><li><a href=\"\/support\/server\/databases\/export-database-using-phpmyadmin\/\">How to export a database<\/a><\/li><\/ul>\n\n\n\n<p>Remember, if you&#8217;re <em>not<\/em> using a database, these steps are not necessary. You can more easily manage static files with the previous two deployment methods.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Now you can start developing like a pro with your own local hosting environment. You may have heard about how you can develop sites locally with your own Apache, MySQL and PHP server. It&#8217;s never been easier to install this software and have it running on your computer in a matter of seconds. In this<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"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-4613","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>How to Create a Local Dev Server with Vagrant | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll show you how you can create a local dev server for testing your site and how you can deploy your work.\" \/>\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\/how-to-create-a-local-dev-server-with-vagrant\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a Local Dev Server with Vagrant | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll show you how you can create a local dev server for testing your site and how you can deploy your work.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\" \/>\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=\"2018-08-23T16:03:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-12T22:11:51+00:00\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\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=\"Christopher Maiorana\" \/>\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\/how-to-create-a-local-dev-server-with-vagrant\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Create a Local Dev Server with Vagrant\",\"datePublished\":\"2018-08-23T16:03:56+00:00\",\"dateModified\":\"2026-01-12T22:11:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\"},\"wordCount\":926,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\",\"name\":\"How to Create a Local Dev Server with Vagrant | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2018-08-23T16:03:56+00:00\",\"dateModified\":\"2026-01-12T22:11:51+00:00\",\"description\":\"In this article, we'll show you how you can create a local dev server for testing your site and how you can deploy your work.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create a Local Dev Server with Vagrant\"}]},{\"@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\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a Local Dev Server with Vagrant | InMotion Hosting","description":"In this article, we'll show you how you can create a local dev server for testing your site and how you can deploy your work.","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\/how-to-create-a-local-dev-server-with-vagrant\/","og_locale":"en_US","og_type":"article","og_title":"How to Create a Local Dev Server with Vagrant | InMotion Hosting","og_description":"In this article, we'll show you how you can create a local dev server for testing your site and how you can deploy your work.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-08-23T16:03:56+00:00","article_modified_time":"2026-01-12T22:11:51+00:00","author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Create a Local Dev Server with Vagrant","datePublished":"2018-08-23T16:03:56+00:00","dateModified":"2026-01-12T22:11:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/"},"wordCount":926,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/","name":"How to Create a Local Dev Server with Vagrant | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2018-08-23T16:03:56+00:00","dateModified":"2026-01-12T22:11:51+00:00","description":"In this article, we'll show you how you can create a local dev server for testing your site and how you can deploy your work.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-create-a-local-dev-server-with-vagrant\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Create a Local Dev Server with Vagrant"}]},{"@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\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4288,"name":"Website","slug":"website","link":"https:\/\/www.inmotionhosting.com\/support\/website\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4613","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\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4613"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4613\/revisions"}],"predecessor-version":[{"id":90339,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4613\/revisions\/90339"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}