{"id":26580,"date":"2023-07-11T02:44:50","date_gmt":"2023-05-16T23:27:24","guid":{"rendered":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/"},"modified":"2025-08-11T22:00:43","modified_gmt":"2025-08-11T14:00:43","slug":"ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/","title":{"rendered":"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; \u5b89\u88c5WordPress"},"content":{"rendered":"<h2>\u6761\u4ef6\u3002<\/h2>\n<p>\u7ec8\u4e8e\u5b89\u88c5\u597d\u4e86 WordPress\u3002\u8fd9\u771f\u662f\u82b1\u4e86\u5f88\u957f\u65f6\u95f4\uff01<\/p>\n<h2>\u73af\u5883<\/h2>\n<p>Ubuntu 22.04<br \/>\nNginx 1.22.1<br \/>\nMariaDB 10.6.11<br \/>\nPHP 8.1<\/p>\n<p>Ubuntu 22.04<br \/>\nNginx 1.22.1<br \/>\nMariaDB 10.6.11<br \/>\nPHP 8.1<\/p>\n<h2>\u8bbe\u7f6e<\/h2>\n<h3>WordPress \u7684\u4e0b\u8f7d<\/h3>\n<p>\u5207\u6362\u5230tmp\u76ee\u5f55\u5e76\u4e0b\u8f7dWordPress\u3002<\/p>\n<pre class=\"post-pre\"><code>$ cd \/tmp\r\n$ wget https:\/\/ja.wordpress.org\/latest-ja.tar.gz\r\n$ tar -xvzf latest-ja.tar.gz\r\n<\/code><\/pre>\n<h3>WordPress\u7684\u5b89\u88c5<\/h3>\n<p>\u5c06\u4ecetmp\u76ee\u5f55\u4e0b\u8f7d\u7684WordPress\u6587\u4ef6\u79fb\u52a8\u5230\/var\/www\/wordpress\u3002<\/p>\n<pre class=\"post-pre\"><code>$ sudo mv wordpress \/var\/www\/html\/wordpress\r\n<\/code><\/pre>\n<p>\u5c06\u6743\u9650\u6388\u4e88 www-data \u7528\u6237\u4ee5\u8bbf\u95ee WordPress \u76ee\u5f55\u3002<\/p>\n<pre class=\"post-pre\"><code>$ sudo chown -R www-data:www-data \/var\/www\/html\/wordpress\r\n$ sudo chmod -R 755 \/var\/www\/html\/wordpress\/\r\n<\/code><\/pre>\n<p>\u5c06\u6587\u4ef6\u5939\u4e2d\u51c6\u5907\u7684wp-config-sample.php\u6587\u4ef6\u66f4\u540d\u4e3awp-config.php\u3002<\/p>\n<pre class=\"post-pre\"><code>$ sudo mv \/var\/www\/html\/wordpress\/wp-config-sample.php \/var\/www\/html\/wordpress\/wp-config.php\r\n<\/code><\/pre>\n<p>\u5728 wp-config.php \u6587\u4ef6\u4e2d\u6dfb\u52a0\u4f7f\u7528 MariaDB \u914d\u7f6e\u7684\u7528\u6237\u540d\u548c\u5bc6\u7801\u4fe1\u606f\u3002<\/p>\n<pre class=\"post-pre\"><code>$ sudo vi \/var\/www\/html\/wordpress\/wp-config.php\r\n\r\n\/\/ ** Database settings - You can get this info from your web host ** \/\/\r\n\/** The name of the database for WordPress *\/\r\ndefine( 'DB_NAME', 'database_name_here' );\r\n\r\n\/** Database username *\/\r\ndefine( 'DB_USER', 'username_here' );\r\n\r\n\/** Database password *\/\r\ndefine( 'DB_PASSWORD', 'password_here' );\r\n\r\n\/** Database hostname *\/\r\ndefine( 'DB_HOST', 'localhost' );\r\n\r\n\/** Database charset to use in creating database tables. *\/\r\ndefine( 'DB_CHARSET', 'utf8' );\r\n\r\n\/** The database collate type. Don't change this if in doubt. *\/\r\ndefine( 'DB_COLLATE', '' );\r\n<\/code><\/pre>\n<h3>\u8bf7\u7ed9\u51fa\u4e2d\u6587\u7684\u540c\u4e49\u53e5\u3002<\/h3>\n<p>\u5982\u679c\u5728\u5b89\u88c5PHP\u65f6\u8fdb\u884c\u4e86\u8bbe\u7f6e\u5c31\u597d\u4e86\uff0c\u4f46\u662f\u53ef\u80fd\u6ca1\u6709\u8fdb\u884c\u8bbe\u7f6e\u7684\u4eba\u6700\u597d\u786e\u8ba4\u4e00\u4e0b\u3002<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code>$ sudo cat \/etc\/nginx\/sites-available\/default \r\n\r\nserver {\r\n        listen 80 default_server;\r\n        listen [::]:80 default_server;\r\n\r\n        root \/var\/www\/html;\r\n\r\n        index index.php index.html index.htm index.nginx-debian.html;\r\n\r\n        server_name _;\r\n\r\n        location \/ {\r\n                try_files $uri $uri\/ =404;\r\n        }\r\n\r\n        location ~ \\.php$ {\r\n        include snippets\/fastcgi-php.conf;\r\n\r\n        fastcgi_pass unix:\/run\/php\/php8.1-fpm.sock;\r\n        #       # With php-cgi (or other tcp sockets):\r\n\r\n        }\r\n}\r\n<\/code><\/pre>\n<pre class=\"post-pre\"><code>$ sudo systemctl restart nginx\r\n<\/code><\/pre>\n<h3>\u786e\u8ba4WordPress<\/h3>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/657c25bdd0c9c81e0f5cbe1c\/23-0.png\" alt=\"image.png\" \/><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u6761\u4ef6\u3002 \u7ec8\u4e8e\u5b89\u88c5\u597d\u4e86 WordPress\u3002\u8fd9\u771f\u662f\u82b1\u4e86\u5f88\u957f\u65f6\u95f4\uff01 \u73af\u5883 Ubuntu 22.04 Nginx 1 [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[227],"class_list":["post-26580","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-227"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0\" \/>\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.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-\u5b89\u88c5wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress\" \/>\n<meta property=\"og:description\" content=\"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-\u5b89\u88c5wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-16T23:27:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-11T14:00:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/657c25bdd0c9c81e0f5cbe1c\/23-0.png\" \/>\n<meta name=\"author\" content=\"\u6e05, \u5b87\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u6e05, \u5b87\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/\",\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/\",\"name\":\"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#website\"},\"datePublished\":\"2023-05-16T23:27:24+00:00\",\"dateModified\":\"2025-08-11T14:00:43+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/1a6ecd3d914d22a5ac32791ffc1fbd8e\"},\"description\":\"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/zh\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; \u5b89\u88c5WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/1a6ecd3d914d22a5ac32791ffc1fbd8e\",\"name\":\"\u6e05, \u5b87\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4b2016c18459a605fc469c7566608f5686491baa112d0871ee613f61b7210565?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4b2016c18459a605fc469c7566608f5686491baa112d0871ee613f61b7210565?s=96&d=mm&r=g\",\"caption\":\"\u6e05, \u5b87\"},\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/author\/qingyu\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress - Blog - Silicon Cloud","description":"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0","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.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-\u5b89\u88c5wordpress\/","og_locale":"zh_CN","og_type":"article","og_title":"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress","og_description":"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0","og_url":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-\u5b89\u88c5wordpress\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2023-05-16T23:27:24+00:00","article_modified_time":"2025-08-11T14:00:43+00:00","og_image":[{"url":"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/657c25bdd0c9c81e0f5cbe1c\/23-0.png"}],"author":"\u6e05, \u5b87","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u6e05, \u5b87","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/","url":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/","name":"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 - \u5b89\u88c5WordPress - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#website"},"datePublished":"2023-05-16T23:27:24+00:00","dateModified":"2025-08-11T14:00:43+00:00","author":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/1a6ecd3d914d22a5ac32791ffc1fbd8e"},"description":"\u5173\u4e8eUbuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PH\u7684\u6280\u672f\u6587\u7ae0","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/zh\/blog\/"},{"@type":"ListItem","position":2,"name":"Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; WordPress installation Ubuntu 22.04 + Nginx 1.22.1 + MariaDB 10.6.11 + PHP 8.1 &#8211; \u5b89\u88c5WordPress"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#website","url":"https:\/\/www.silicloud.com\/zh\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/1a6ecd3d914d22a5ac32791ffc1fbd8e","name":"\u6e05, \u5b87","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4b2016c18459a605fc469c7566608f5686491baa112d0871ee613f61b7210565?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4b2016c18459a605fc469c7566608f5686491baa112d0871ee613f61b7210565?s=96&d=mm&r=g","caption":"\u6e05, \u5b87"},"url":"https:\/\/www.silicloud.com\/zh\/blog\/author\/qingyu\/"},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-wordpress-installation-ubuntu-22-04-nginx-1-22-1-mariadb-10-6-11-php-8-1-%e5%ae%89%e8%a3%85wordpress\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/26580","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/comments?post=26580"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/26580\/revisions"}],"predecessor-version":[{"id":92046,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/26580\/revisions\/92046"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/media?parent=26580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/categories?post=26580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/tags?post=26580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}