{"id":2981,"date":"2025-12-29T16:22:25","date_gmt":"2025-12-29T08:22:25","guid":{"rendered":"https:\/\/www.ruianding.com\/blog\/?p=2981"},"modified":"2026-02-07T15:10:28","modified_gmt":"2026-02-07T07:10:28","slug":"migration-memo-scaling-a-web-architecture-across-cloud-providers","status":"publish","type":"post","link":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/","title":{"rendered":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p>This guide documents the high-stakes migration of a multi-service web ecosystem (WordPress, ComfyUI, Dify, GPT, etc.) from <strong>Server A<\/strong> to <strong>Server B<\/strong>. Our goal was to achieve a seamless transition of dozens of subdomains while maintaining SSL integrity and remote database connectivity.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Phase 1: The &#8220;Connectivity&#8221; Layer &amp; Corporate Firewalls<\/h2>\n\n\n\n<p>Before moving data, we addressed the &#8220;SMB Trap.&#8221;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>The Issue:<\/strong> Port 445 (SMB) was blocked by corporate DPI (Deep Packet Inspection) for international traffic.<\/li>\n\n\n\n<li><strong>The Lesson:<\/strong> Never rely on raw sensitive protocols over public IPs.<\/li>\n\n\n\n<li><strong>Resolution:<\/strong> Encapsulate traffic using <strong>Tailscale<\/strong> or <strong>SSH Tunneling<\/strong> to bypass inspection.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Phase 2: File Transfer &amp; Directory Traps<\/h2>\n\n\n\n<p>During the move, two common Linux file-handling errors occurred:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>The SCP &#8220;Fake File&#8221; Trap:<\/strong> If the target directory doesn&#8217;t exist, SCP saves the upload <em>as a file<\/em> with that name instead of a folder.<\/li>\n\n\n\n<li><strong>The Tar &#8220;Nested Doll&#8221; Effect:<\/strong> Extracting a package into a pre-made folder often creates redundant layers (e.g., <code>\/data\/site\/site\/<\/code>).<\/li>\n<\/ol>\n\n\n\n<p><strong>The Recovery Fix:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># Rename the \"fake\" file back to archive\nmv \/data \/data_backup.tar.gz\n\n# Create correct target\nmkdir -p \/data\/ruianding.com\n\n# Flatten\ntar -xzvf \/data_backup.tar.gz -C \/data\/ruianding.com --strip-components=1 \n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Phase 3: Apache Mass Migration<\/h2>\n\n\n\n<p>With over 10 subdomains, manual configuration is a recipe for disaster. We used <strong>Environment Mirroring<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Packaging Everything (Server A)<\/h3>\n\n\n\n<p>Follow symbolic links with <code>-h<\/code> to ensure SSL certificates are actually included, not just the links.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cd \/etc\/apache2\nsudo tar -czvf sites_backup.tar.gz sites-available\/\nsudo tar -chzvf letsencrypt_all.tar.gz \/etc\/letsencrypt\/\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. Environment Mirroring (Server B)<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># Install environment\nsudo apt update &amp;&amp; sudo apt install apache2 certbot php-mysql -y\n\n# Enable Proxy &amp; SSL modules\nsudo a2enmod proxy proxy_http proxy_balancer lbmethod_byrequests ssl rewrite headers\n\n# Batch enable sites\ncd \/etc\/apache2\/sites-available\nls *.conf | xargs -i sudo a2ensite {}\n\nsudo systemctl restart apache2\n<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Phase 4: The MySQL 8.0 &amp; Latency &#8220;Reality Check&#8221;<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. The Syntax Barrier (MySQL 8.0+)<\/h3>\n\n\n\n<p><strong>Pitfall: <\/strong>GRANT &#8230; IDENTIFIED BY is deprecated and throws Error 1064.<\/p>\n\n\n\n<p><strong>Lesson: <\/strong>Identity and Authorization are now separate.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- On Server A\n\nCREATE USER 'user_id'@'Server_B_IP' IDENTIFIED BY 'your_actual_password';\nGRANT ALL PRIVILEGES ON database.* TO 'user_id'@'Server_B_IP';\nFLUSH PRIVILEGES;\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. The Hostfile Hack<\/h3>\n\n\n\n<p>To decouple code from infrastructure, we mapped the DB host at the OS level on Server B:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \/etc\/hosts\n[Server_A_IP]  mysql_remote_host\n\n# wp-config.php\ndefine( 'DB_HOST', 'mysql_remote_host' );\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. The &#8220;Latency Tax&#8221; <\/h3>\n\n\n\n<p>We initially attempted a distributed setup: the <strong>Database<\/strong> remained on Server A (Japan), while the <strong>WordPress Code<\/strong> lived on Server B (China).<\/p>\n\n\n\n<p><strong>The Observation:<\/strong> The website became extremely sluggish, often taking 5\u201310 seconds just to render a basic page.<\/p>\n\n\n\n<p><strong>The &#8220;Chatty&#8221; Reality:<\/strong> WordPress is a &#8220;chatty&#8221; application. To load a single page, it doesn&#8217;t just ask the database once; it sends dozens of small queries to fetch options, metadata, and content.<\/p>\n\n\n\n<p><strong>The Math:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Single Query Latency (RTT):<\/strong> ~60ms (China to Japan)<\/li>\n\n\n\n<li><strong>WordPress Page Load:<\/strong> ~80 SQL queries<\/li>\n\n\n\n<li><strong>Total Wait Time:<\/strong> 80 * 60 ms = 4,800 ms = <strong>4.8 seconds<\/strong> of pure silence while the server waits for data to cross the ocean.<\/li>\n<\/ul>\n\n\n\n<p><strong>The Verdict:<\/strong> Database proximity is non-negotiable for monolithic apps like WordPress. In a cross-border setup, the &#8220;Latency Tax&#8221; is too high to pay. Moving the database to the same local network as the code is the only way to achieve sub-second load times.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview This guide documents the high-stakes migration of a multi-service web ecosystem (WordPress, ComfyUI, Dify, GPT, etc.) from Server A to Server B. Our goal was to achieve a seamless transition of dozens of subdomains while maintaining SSL integrity and remote database connectivity. Phase 1: The &#8220;Connectivity&#8221; Layer &amp; Corporate Firewalls Before moving data, we [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"categories":[51,76,10],"tags":[71,59,78,44],"class_list":["post-2981","post","type-post","status-publish","format-standard","hentry","category-mysql","category-network","category-tutorial","tag-apache","tag-migration","tag-mysql","tag-network"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT<\/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:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"og:description\" content=\"Overview This guide documents the high-stakes migration of a multi-service web ecosystem (WordPress, ComfyUI, Dify, GPT, etc.) from Server A to Server B. Our goal was to achieve a seamless transition of dozens of subdomains while maintaining SSL integrity and remote database connectivity. Phase 1: The &#8220;Connectivity&#8221; Layer &amp; Corporate Firewalls Before moving data, we [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\" \/>\n<meta property=\"og:site_name\" content=\"\u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-29T08:22:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-07T07:10:28+00:00\" \/>\n<meta name=\"author\" content=\"Ruian Ding\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ruian Ding\" \/>\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:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\"},\"author\":{\"name\":\"Ruian Ding\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"headline\":\"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices\",\"datePublished\":\"2025-12-29T08:22:25+00:00\",\"dateModified\":\"2026-02-07T07:10:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\"},\"wordCount\":405,\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"keywords\":[\"APACHE\",\"MIGRATION\",\"MYSQL\",\"NETWORK\"],\"articleSection\":[\"MySQL\",\"Network\",\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\",\"name\":\"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\"},\"datePublished\":\"2025-12-29T08:22:25+00:00\",\"dateModified\":\"2026-02-07T07:10:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ruianding.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\",\"url\":\"https:\/\/www.ruianding.com\/blog\/\",\"name\":\"Ruian's Tech Troubleshooting Toolbox\",\"description\":\"Debug the World.\",\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"alternateName\":\"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\",\"name\":\"Ruian Ding\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"contentUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"width\":284,\"height\":284,\"caption\":\"Ruian Ding\"},\"logo\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.\",\"sameAs\":[\"https:\/\/www.ruianding.com\"],\"url\":\"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT","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.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/","og_locale":"en_US","og_type":"article","og_title":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT","og_description":"Overview This guide documents the high-stakes migration of a multi-service web ecosystem (WordPress, ComfyUI, Dify, GPT, etc.) from Server A to Server B. Our goal was to achieve a seamless transition of dozens of subdomains while maintaining SSL integrity and remote database connectivity. Phase 1: The &#8220;Connectivity&#8221; Layer &amp; Corporate Firewalls Before moving data, we [&hellip;]","og_url":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/","og_site_name":"\u6781\u7b80IT\uff5cSimpleIT","article_published_time":"2025-12-29T08:22:25+00:00","article_modified_time":"2026-02-07T07:10:28+00:00","author":"Ruian Ding","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ruian Ding","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#article","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/"},"author":{"name":"Ruian Ding","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"headline":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices","datePublished":"2025-12-29T08:22:25+00:00","dateModified":"2026-02-07T07:10:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/"},"wordCount":405,"publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"keywords":["APACHE","MIGRATION","MYSQL","NETWORK"],"articleSection":["MySQL","Network","Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/","url":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/","name":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices - \u6781\u7b80IT\uff5cSimpleIT","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/#website"},"datePublished":"2025-12-29T08:22:25+00:00","dateModified":"2026-02-07T07:10:28+00:00","breadcrumb":{"@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ruianding.com\/blog\/migration-memo-scaling-a-web-architecture-across-cloud-providers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ruianding.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Migration Memo: The Ultimate Pitfall Guide &amp; Best Practices"}]},{"@type":"WebSite","@id":"https:\/\/www.ruianding.com\/blog\/#website","url":"https:\/\/www.ruianding.com\/blog\/","name":"Ruian's Tech Troubleshooting Toolbox","description":"Debug the World.","publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"alternateName":"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b","name":"Ruian Ding","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","contentUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","width":284,"height":284,"caption":"Ruian Ding"},"logo":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/"},"description":"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.","sameAs":["https:\/\/www.ruianding.com"],"url":"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2981","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/comments?post=2981"}],"version-history":[{"count":4,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2981\/revisions"}],"predecessor-version":[{"id":2988,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2981\/revisions\/2988"}],"wp:attachment":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/media?parent=2981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/categories?post=2981"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/tags?post=2981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}