{"id":78277,"date":"2021-07-15T09:00:28","date_gmt":"2021-07-15T13:00:28","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=78277"},"modified":"2026-04-23T17:46:39","modified_gmt":"2026-04-23T21:46:39","slug":"rsync","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/","title":{"rendered":"How to Transfer and Backup Files With Rsync"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png\" alt=\"How to Transfer and Backup Files With Rsync\" class=\"wp-image-78278\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> Rsync is a powerful tool for copying files to and from remote servers or between various networks machines.  You can use it for copying files locally, or to backup your files to your remote server.  You can also use it as a command line replacement for FTP when transferring your website files to a server. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"basic-rsync-usage\">Basic Rsync Usage<\/h2>\n\n\n\n<p> Here are a few common use cases that would be applicable to most users.   More advanced Rsync command require  <a href=\"https:\/\/www.inmotionhosting.com\/cpanel-hosting\/vps-with-cpanel\">cPanel VPS hosting<\/a> or cloud and unmanaged VPS level hosting. The below commands should work over SSH with your cPanel user.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"transfer\">How to Transfer Website Files With Rsync<\/h3>\n\n\n\n<p>\nIn this example, imagine you have a server hosting your website files in the <code>\/var\/www\/hmtl<\/code> directory, and you want to transfer only local HTML files to that directory on the server.  This is the most basic usage of rsync but demonstrates the full capabilities of the program. \n<\/p>\n\n\n\n<pre id=\"orgfbc2158\" class=\"wp-block-preformatted example\">rsync *.html --delete user@server:\/var\/www\/html\n<\/pre>\n\n\n\n<p> This command uses wildcard expansion (<code>*<\/code>) grab any file that ends with the <code>.html<\/code> file extension followed by a host specification (<code>user@server<\/code>), a colon (<code>:<\/code>), and finally the server file path into which you want rsync to place your files.  The <code>--delete<\/code> option will remove any files from the destination that have been deleted at the source.  This means if you had deleted one of those HTML files locally it will also be deleted from the server.  This is what differentiates rsync from many other file transfer systems, it helps keep your files clean and organized. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"local-backup-rsyncs\">How To Create a Local Backup Of Your Website Files<\/h3>\n\n\n\n<p>\nNow imagine taking the above situation in the reverse: going up to your website files as the <i>source<\/i> and downloading them to a local <i>destination<\/i>.  This is an effective and easy way of backing up your website files.\n<\/p>\n\n\n\n<pre id=\"org125b98d\" class=\"wp-block-preformatted example\">rsync -av --delete user@server:\/var\/www\/html \/mnt\/backupdrive\n<\/pre>\n\n\n\n<p>\nIn this instance, we are asking rsync to take the contents of the <code>\/var\/www\/html<\/code> directory (which contains all of your website files) and delivering them to a local destination: a hard drive mounted to <code>\/mnt\/backupdrive<\/code>.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why-rsync\">Why Use Rsync?<\/h2>\n\n\n\n<p>\nThere are many different backup and file transfer alternatives out there.  So why use rsync?\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"delta\">Delta Transfers<\/h3>\n\n\n\n<p>\nAfter repeated use, rsync is faster than other command line file transfer tools (scp, for example) because it checks your files before transfer and only copies data that has been updated at the source.   This means that subsequent backups and file transfers will be much faster after the initial transfer.  Even if you are moving large media files, rsync is capable of handling just about anything you throw at it.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"scripting\">Scripting Capabilities<\/h3>\n\n\n\n<p>\nBecause rsync runs in your command line, you can save your transfer in a script.  This allows you to run a transfer whenever you want without having to remember the options or risk typing in a wrong file path.  You can also schedule your transfers via <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/how-to-run-a-cron-job\/\">cron<\/a>.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"helpful-options\">Helpful Options<\/h2>\n\n\n\n<p>\nAs you can imagine, rsync is highly customizable.  You can customize virtually every element of the transfer.  Below are some helpful options for file transfer that you might want to use in your scripts.\n<\/p>\n\n\n\n<p> You\u2019ll notice we used the <code>-a<\/code> option in our backup script along with a <code>-v<\/code>.  This copies files recursively, going into each directory down the path provided, and \u201cverbosity\u201d \u2014 telling you what is happening.  The <code>--delete<\/code> option will sync the source and destination by deleting files from the destination that have been deleted from the source.  (So if you are going to use the <code>--delete<\/code> be aware that it can cause some data loss.) <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Rsync is a powerful tool for copying files to and from remote servers or between various networks machines. You can use it for copying files locally, or to backup your files to your remote server. You can also use it as a command line replacement for FTP when transferring your website files to a server.<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4625],"tags":[],"class_list":["post-78277","post","type-post","status-publish","format-standard","hentry","category-website-transfers"],"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 Transfer and Backup Files With Rsync<\/title>\n<meta name=\"description\" content=\"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.\" \/>\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\/website-transfers\/rsync\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Transfer and Backup Files With Rsync\" \/>\n<meta property=\"og:description\" content=\"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\" \/>\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=\"2021-07-15T13:00:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-23T21:46:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 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\/website-transfers\/rsync\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Transfer and Backup Files With Rsync\",\"datePublished\":\"2021-07-15T13:00:28+00:00\",\"dateModified\":\"2026-04-23T21:46:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\"},\"wordCount\":577,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png\",\"articleSection\":[\"Website Transfers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\",\"name\":\"How to Transfer and Backup Files With Rsync\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png\",\"datePublished\":\"2021-07-15T13:00:28+00:00\",\"dateModified\":\"2026-04-23T21:46:39+00:00\",\"description\":\"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Transfer and Backup Files With Rsync\"}]},{\"@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 Transfer and Backup Files With Rsync","description":"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.","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\/website-transfers\/rsync\/","og_locale":"en_US","og_type":"article","og_title":"How to Transfer and Backup Files With Rsync","og_description":"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-07-15T13:00:28+00:00","article_modified_time":"2026-04-23T21:46:39+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Transfer and Backup Files With Rsync","datePublished":"2021-07-15T13:00:28+00:00","dateModified":"2026-04-23T21:46:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/"},"wordCount":577,"commentCount":1,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png","articleSection":["Website Transfers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/","name":"How to Transfer and Backup Files With Rsync","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync-1024x538.png","datePublished":"2021-07-15T13:00:28+00:00","dateModified":"2026-04-23T21:46:39+00:00","description":"Learn how to backup your files and transfer them around with the power rsync command line tool. All the features you need to automate file transfer.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Rsync.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/rsync\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Transfer and Backup Files With Rsync"}]},{"@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":4625,"name":"Website Transfers","slug":"website-transfers","link":"https:\/\/www.inmotionhosting.com\/support\/website\/website-transfers\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/78277","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=78277"}],"version-history":[{"count":6,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/78277\/revisions"}],"predecessor-version":[{"id":132034,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/78277\/revisions\/132034"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=78277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=78277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=78277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}