{"id":5493,"date":"2023-05-25T15:58:39","date_gmt":"2023-05-25T15:58:39","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=5493"},"modified":"2023-05-25T16:00:30","modified_gmt":"2023-05-25T16:00:30","slug":"setup-lighttpd-on-ubuntu-debian-linux","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/","title":{"rendered":"How to Install Lighttpd on Ubuntu \/ Debian"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en.jpg\" alt=\"setup Lighttpd on Ubuntu Debian\" class=\"wp-image-5511\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p><strong>Lighttpd <\/strong>is a lightweight web server that is fast, efficient, and easy to configure. It is a good choice for small to medium-sized websites, and it can also be used as a reverse proxy for larger websites.<\/p>\n\n\n\n<p>In this article, we will show you how to install Lighttpd on a Debian or Ubuntu server. We will also show you how to configure Lighttpd to serve a simple website.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before you can install Lighttpd, you will need to have the following prerequisites:<\/p>\n\n\n\n<ul>\n<li>A Debian or Ubuntu server with a working internet connection<\/li>\n\n\n\n<li>A user account with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-update-the-system-packages\">Step 1: Update the system packages<\/h2>\n\n\n\n<p>The first step is to update the system packages. This will ensure that you have the latest versions of the software that Lighttpd depends on.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update\n$ sudo apt upgrade<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-install-lighttpd\">Step 2: Install Lighttpd<\/h2>\n\n\n\n<p>Once the system packages are updated, you can install Lighttpd.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install lighttpd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-configure-lighttpd\">Step 3: Configure Lighttpd<\/h2>\n\n\n\n<p>The default configuration for Lighttpd is located in the&nbsp;<code>\/etc\/lighttpd\/lighttpd.conf<\/code>&nbsp;file. You can edit this file to configure Lighttpd to serve your website.<\/p>\n\n\n\n<p>For a simple website, you can use the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"properties\" class=\"language-properties\">server.document-root = \/var\/www\/html<\/code><\/pre>\n\n\n\n<p>This tells Lighttpd to serve the website files from the&nbsp;<code>\/var\/www\/html<\/code>&nbsp;directory.<\/p>\n\n\n\n<p>You can also configure Lighttpd to use a different port than the default port 80. To do this, add the following line to the&nbsp;<code>lighttpd.conf<\/code>&nbsp;file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"properties\" class=\"language-properties\">server.port = 8080<\/code><\/pre>\n\n\n\n<ul>\n<li>Create a new directory for your website:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ mkdir \/var\/www\/html<\/code><\/pre>\n\n\n\n<ul>\n<li>Create a new file in the directory called&nbsp;<code>index.html<\/code>&nbsp;and paste the following code:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n    &lt;head&gt;\n        &lt;title&gt;My Website&lt;\/title&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;h1&gt;Welcome to my website!&lt;\/h1&gt;\n    &lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-start-lighttpd\">Step 4: Start Lighttpd<\/h2>\n\n\n\n<p>Once you have configured Lighttpd, you can start the service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start lighttpd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-test-the-website\">Step 5: Test the website<\/h2>\n\n\n\n<p>Once Lighttpd is started, you can test the website by opening a web browser and navigating to the server&#8217;s IP address or domain name. For example, if the server&#8217;s IP address is 192.168.1.100, you would open a web browser and navigate to&nbsp;<code>http:\/\/192.168.1.100<\/code>.<\/p>\n\n\n\n<p>If you have configured Lighttpd correctly, You should see the following page:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n    &lt;head&gt;\n        &lt;title&gt;My Website&lt;\/title&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;h1&gt;Welcome to my website!&lt;\/h1&gt;\n    &lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>In this article, we have shown you how to install Lighttpd on a Debian or Ubuntu server. We have also shown you how to configure Lighttpd to serve a simple website.<\/p>\n\n\n\n<p>For more information about Lighttpd, you can visit Lighttpd official website:\u00a0<a href=\"https:\/\/www.lighttpd.net\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.lighttpd.net\/<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Lighttpd is a lightweight web server that is fast, efficient, and easy to configure. It is a good choice for small to medium-sized websites, and it can also be used as a reverse proxy for larger websites. In this article, we will show you how to install Lighttpd on a Debian or Ubuntu server. We ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,4],"tags":[],"yoast_head":"\n<title>How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.\" \/>\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.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-25T15:58:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-25T16:00:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\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\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to Install Lighttpd on Ubuntu \/ Debian\",\"datePublished\":\"2023-05-25T15:58:39+00:00\",\"dateModified\":\"2023-05-25T16:00:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\"},\"wordCount\":364,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\",\"name\":\"How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-05-25T15:58:39+00:00\",\"dateModified\":\"2023-05-25T16:00:30+00:00\",\"description\":\"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Lighttpd on Ubuntu \/ Debian\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations","description":"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.","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.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations","og_description":"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.","og_url":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-05-25T15:58:39+00:00","article_modified_time":"2023-05-25T16:00:30+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/lighttpd_ubuntu_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to Install Lighttpd on Ubuntu \/ Debian","datePublished":"2023-05-25T15:58:39+00:00","dateModified":"2023-05-25T16:00:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/"},"wordCount":364,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/","url":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/","name":"How to Install Lighttpd on Ubuntu \/ Debian - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-05-25T15:58:39+00:00","dateModified":"2023-05-25T16:00:30+00:00","description":"Learn how to install Lighttpd on Ubuntu or Debian servers and configure it to serve a simple website. Follow the step-by-step guide to set up Lighttpd, update system packages, create website directories, and start the server. Get your lightweight and efficient web server up and running.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/setup-lighttpd-on-ubuntu-debian-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Install Lighttpd on Ubuntu \/ Debian"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5493"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=5493"}],"version-history":[{"count":8,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5493\/revisions"}],"predecessor-version":[{"id":5528,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5493\/revisions\/5528"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=5493"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=5493"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=5493"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}