{"id":33289,"date":"2023-10-04T17:57:16","date_gmt":"2022-12-29T19:02:32","guid":{"rendered":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/"},"modified":"2024-05-04T02:52:25","modified_gmt":"2024-05-03T18:52:25","slug":"%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/","title":{"rendered":"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907"},"content":{"rendered":"<h2>\u5b89\u88c5<\/h2>\n<p>\u5047\u8bbe\u5df2\u7ecf\u5b89\u88c5\u4e86Redis\u3002<\/p>\n<pre class=\"post-pre\"><code>cd \/usr\/local\/src\r\n\r\n# lua\u306einstall\r\nwget -O lua-nginx-module.tar.gz https:\/\/github.com\/chaoslawful\/lua-nginx-module\/tarball\/master\r\ntar zxvf lua-nginx-module.tar.gz\r\n\r\n# luajit\u306einstall\r\nwget http:\/\/luajit.org\/download\/LuaJIT-2.0.0.tar.gz\r\ntar zxvf LuaJIT-2.0.0.tar.gz\r\ncd LuaJIT-2.0.0\r\nmake\r\n\r\n#lua-nginx-module\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\r\ngit clone https:\/\/github.com\/chaoslawful\/lua-nginx-module.git\r\n\r\n#nginx\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\r\nwget http:\/\/nginx.org\/download\/nginx-1.3.6.tar.gz\r\ntar zxvf nginx-1.3.6.tar.gz\r\ncd nginx-1.3.6\r\n\r\n# \u5fc5\u8981\u306a\u30e2\u30b8\u30e5\u30fc\u30ebintall\r\nyum -y install pcre-devel libxml2 libxml2-devel libxslt libxslt-devel gd-devel GeoIP-devel perl-devel\r\n\r\n#configure\r\n.\/configure \\\r\n--with-http_ssl_module \\\r\n--with-http_realip_module \\\r\n--with-http_addition_module \\\r\n--with-http_xslt_module \\\r\n--with-http_image_filter_module \\\r\n--with-http_geoip_module \\\r\n--with-http_sub_module \\\r\n--with-http_dav_module \\\r\n--with-http_flv_module \\\r\n--with-http_mp4_module \\\r\n--with-http_gzip_static_module \\\r\n--with-http_random_index_module \\\r\n--with-http_secure_link_module \\\r\n--with-http_degradation_module \\\r\n--with-http_stub_status_module \\\r\n--with-debug \\\r\n--add-module=\/usr\/local\/src\/lua-nginx-module \\\r\n--add-module=\/usr\/local\/src\/ngx_http_redis-0.3.6 \\\r\n--add-module=\/usr\/local\/src\/ngx_cache_purge-2.0 \\\r\n--add-module=\/usr\/local\/src\/agentzh-headers-more-nginx-module-27bcbd2\r\n\r\nmake\r\nmake install\r\n<\/code><\/pre>\n<h2>\u542f\u52a8\u5468\u56f4\u7b49<\/h2>\n<p>\u521b\u5efa\u4e00\u4e2a\u540d\u4e3a\/nginx\u7684\u6267\u884c\u6587\u4ef6\uff0c\u5185\u5bb9\u5982\u4e0b\uff1a\/etc\/init.d\/nginx\u3002<\/p>\n<pre class=\"post-pre\"><code>#!\/bin\/sh                                                                                                                                                                  \r\n#                                                                                                                                                                          \r\n# nginx - this script starts and stops the nginx daemon                                                                                                                    \r\n#                                                                                                                                                                          \r\n# chkconfig:   - 85 15                                                                                                                                                     \r\n# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \\                                                                                                              \r\n#               proxy and IMAP\/POP3 proxy server                                                                                                                           \r\n# processname: nginx                                                                                                                                                       \r\n\r\n# Source function library.                                                                                                                                                 \r\n. \/etc\/rc.d\/init.d\/functions\r\n\r\n# Source networking configuration.                                                                                                                                         \r\n. \/etc\/sysconfig\/network\r\n\r\n# Check that networking is up.                                                                                                                                             \r\n[ \"$NETWORKING\" = \"no\" ] &amp;&amp; exit 0\r\n\r\nnginx=\"\/usr\/local\/nginx\/sbin\/nginx\"\r\nprog=$(basename $nginx)\r\n\r\nNGINX_CONF_FILE=\"\/usr\/local\/nginx\/conf\/nginx.conf\"\r\n\r\nlockfile=\/usr\/local\/nginx\/logs\/nginx.lock\r\n\r\nstart() {\r\n    [ -x $nginx ] || exit 5\r\n    [ -f $NGINX_CONF_FILE ] || exit 6\r\n    echo -n $\"Starting $prog: \"\r\n    daemon $nginx -c $NGINX_CONF_FILE\r\n    retval=$?\r\n    echo\r\n    [ $retval -eq 0 ] &amp;&amp; touch $lockfile\r\n    return $retval\r\n}\r\n\r\nstop() {\r\n    echo -n $\"Stopping $prog: \"\r\n    killproc $prog -QUIT\r\n    retval=$?\r\n    echo\r\n    [ $retval -eq 0 ] &amp;&amp; rm -f $lockfile\r\n    return $retval\r\n}\r\n\r\nrestart() {\r\n    configtest || return $?\r\n    stop\r\n    sleep 1\r\n    start\r\n}\r\n\r\nreload() {\r\n    configtest || return $?\r\n    echo -n $\"Reloading $prog: \"\r\n    killproc $nginx -HUP\r\n    RETVAL=$?\r\n    echo\r\n}\r\n\r\nforce_reload() {\r\n    restart\r\n}\r\n\r\nconfigtest() {\r\n  $nginx -t -c $NGINX_CONF_FILE\r\n}\r\n\r\nrh_status() {\r\n    status $prog\r\n}\r\n\r\nrh_status_q() {\r\n    rh_status &gt;\/dev\/null 2&gt;&amp;1\r\n}\r\n\r\ncase \"$1\" in\r\n    start)\r\n        rh_status_q &amp;&amp; exit 0\r\n        $1\r\n        ;;\r\n    stop)\r\n        rh_status_q || exit 0\r\n        $1\r\n        ;;\r\n    restart|configtest)\r\n        $1\r\n        ;;\r\n    reload)\r\n        rh_status_q || exit 7\r\n        $1\r\n        ;;\r\n    force-reload)\r\n        force_reload\r\n        ;;\r\n    status)\r\n        rh_status\r\n    ;;\r\n    condrestart|try-restart)\r\n        rh_status_q || exit 0\r\n            ;;\r\n    *)\r\n        echo $\"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}\"\r\n        exit 2\r\nesac\r\n<\/code><\/pre>\n<p>\u968f\u540e\uff0c\u8fdb\u884c\u4ee5\u4e0b\u8bbe\u7f6e\u4ee5\u81ea\u52a8\u542f\u52a8\u3002<\/p>\n<pre class=\"post-pre\"><code>chmod +x \/etc\/init.d\/nginx\r\nchkconfig --add nginx\r\nchkconfig nginx on\r\nservice nginx start\r\n<\/code><\/pre>\n<p>\u6211\u4f1a\u5c1d\u8bd5\u73a9\u5404\u79cd\u6e38\u620f\u3002<\/p>\n<h2>\u8bf7\u53c2\u8003<\/h2>\n<p>http:\/\/d.hatena.ne.jp\/jimsei\/20120926\/1348683140 &#8211; \u8bf7\u70b9\u51fb\u6b64\u94fe\u63a5\u4ee5\u9605\u8bfb\u6587\u4e2d\u5185\u5bb9\u3002<\/p>\n<p>http:\/\/www.happytrap.jp\/blogs\/2012\/02\/23\/8243\/ &#8211; \u8bf7\u70b9\u51fb\u6b64\u94fe\u63a5\u4ee5\u67e5\u770b\u8be6\u7ec6\u4fe1\u606f\u3002<\/p>\n<h2>\u987a\u4fbf\u63d0\u4e00\u53e5<\/h2>\n<p>\u6211\u66fe\u5c1d\u8bd5\u5b89\u88c5with-http-perl-module\uff0c\u4f46\u7531\u4e8eperl\u7248\u672c\u4e0d\u517c\u5bb9\u800c\u653e\u5f03\u4e86\u3002\u7136\u540e\uff0c\u6211\u5b9e\u9645\u4e0a\u8fd8\u5b89\u88c5\u4e86cache_perge\u548cheaders_more\u6a21\u5757\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5b89\u88c5 \u5047\u8bbe\u5df2\u7ecf\u5b89\u88c5\u4e86Redis\u3002 cd \/usr\/local\/src # lua\u306einstall wget &#8211; [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-33289","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"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>\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907 - Blog - Silicon Cloud<\/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.silicloud.com\/zh\/blog\/\u4e3a\u4e86\u73a9lua\u3001redis\u548cnginx\uff0c\u505a\u597d\u51c6\u5907\u3002\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907\" \/>\n<meta property=\"og:description\" content=\"\u5b89\u88c5 \u5047\u8bbe\u5df2\u7ecf\u5b89\u88c5\u4e86Redis\u3002 cd \/usr\/local\/src # lua\u306einstall wget - [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/zh\/blog\/\u4e3a\u4e86\u73a9lua\u3001redis\u548cnginx\uff0c\u505a\u597d\u51c6\u5907\u3002\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-29T19:02:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-03T18:52:25+00:00\" \/>\n<meta name=\"author\" content=\"\u96c5, \u609f\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u96c5, \u609f\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \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\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/\",\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/\",\"name\":\"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#website\"},\"datePublished\":\"2022-12-29T19:02:32+00:00\",\"dateModified\":\"2024-05-03T18:52:25+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/f044a4b7fa4ee2701702942002419ca6\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/zh\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907\"}]},{\"@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\/f044a4b7fa4ee2701702942002419ca6\",\"name\":\"\u96c5, \u609f\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e71a913e914f1aad1efc391f92084294bac54bc782acd289638580134cf667a6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e71a913e914f1aad1efc391f92084294bac54bc782acd289638580134cf667a6?s=96&d=mm&r=g\",\"caption\":\"\u96c5, \u609f\"},\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/author\/yawu\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907 - Blog - Silicon Cloud","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\/\u4e3a\u4e86\u73a9lua\u3001redis\u548cnginx\uff0c\u505a\u597d\u51c6\u5907\u3002\/","og_locale":"zh_CN","og_type":"article","og_title":"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907","og_description":"\u5b89\u88c5 \u5047\u8bbe\u5df2\u7ecf\u5b89\u88c5\u4e86Redis\u3002 cd \/usr\/local\/src # lua\u306einstall wget - [&hellip;]","og_url":"https:\/\/www.silicloud.com\/zh\/blog\/\u4e3a\u4e86\u73a9lua\u3001redis\u548cnginx\uff0c\u505a\u597d\u51c6\u5907\u3002\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2022-12-29T19:02:32+00:00","article_modified_time":"2024-05-03T18:52:25+00:00","author":"\u96c5, \u609f","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u96c5, \u609f","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/","url":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/","name":"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#website"},"datePublished":"2022-12-29T19:02:32+00:00","dateModified":"2024-05-03T18:52:25+00:00","author":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/f044a4b7fa4ee2701702942002419ca6"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/zh\/blog\/"},{"@type":"ListItem","position":2,"name":"\u4e3a\u4e86\u73a9Lua\u3001Redis\u548cNginx\uff0c\u505a\u597d\u51c6\u5907"}]},{"@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\/f044a4b7fa4ee2701702942002419ca6","name":"\u96c5, \u609f","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e71a913e914f1aad1efc391f92084294bac54bc782acd289638580134cf667a6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e71a913e914f1aad1efc391f92084294bac54bc782acd289638580134cf667a6?s=96&d=mm&r=g","caption":"\u96c5, \u609f"},"url":"https:\/\/www.silicloud.com\/zh\/blog\/author\/yawu\/"},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e4%b8%ba%e4%ba%86%e7%8e%a9lua%e3%80%81redis%e5%92%8cnginx%ef%bc%8c%e5%81%9a%e5%a5%bd%e5%87%86%e5%a4%87%e3%80%82\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/33289","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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/comments?post=33289"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/33289\/revisions"}],"predecessor-version":[{"id":95673,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/33289\/revisions\/95673"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/media?parent=33289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/categories?post=33289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/tags?post=33289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}