{"id":3620,"date":"2023-02-02T12:11:02","date_gmt":"2023-02-02T12:11:02","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=3620"},"modified":"2023-02-02T12:11:06","modified_gmt":"2023-02-02T12:11:06","slug":"how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/","title":{"rendered":"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS"},"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\/01\/ftp_ubuntu_en.jpg\" alt=\"Setting Up FTP Server on Ubuntu 18.04 20.04 22.04 Install\" class=\"wp-image-3642\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>FTP (File Transfer Protocol) is a commonly used protocol for exchanging files over the Internet. It allows users to upload, download, and manage files on a remote server. Setting up an FTP server on an Ubuntu  18.04 20.04 22.04 LTS can be useful for a variety of purposes.<\/p>\n\n\n\n<p>In this guide, we will discuss how to set up an FTP server on an Ubuntu 18.04 20.04 22.04.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before you begin, you will need:<\/p>\n\n\n\n<ul><li>A running Ubuntu 18.04 20.04 22.04.<\/li><li>A non-root user with sudo privileges<\/li><li>An FTP client (such as FileZilla)<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1--installing-the-ftp-server\">Step 1 \u2014 Installing the FTP Server<\/h2>\n\n\n\n<p>The first step is to install the FTP server software. We will be using vsftpd, which is a popular FTP server for Unix-based systems.<\/p>\n\n\n\n<p>To install it, first update the package list:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update<\/code><\/pre>\n\n\n\n<p>Once the package list is updated, install vsftpd:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install vsftpd<\/code><\/pre>\n\n\n\n<p>Once the installation is complete, the vsftpd service will be started automatically.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2--configuring-the-ftp-server\">Step 2 \u2014 Configuring the FTP Server<\/h2>\n\n\n\n<p>Now that vsftpd is installed, we need to configure it. The main configuration file is located at&nbsp;<code>\/etc\/vsftpd.conf<\/code>.<\/p>\n\n\n\n<p>Open this file with a text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/vsftpd.conf<\/code><\/pre>\n\n\n\n<p>The default vsftpd configuration file is well-commented. All the options are explained in detail in the comments.<\/p>\n\n\n\n<p>By default, anonymous users are allowed to login to the FTP server. If you want to disallow anonymous access, uncomment the following line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">#anon_login=YES<\/code><\/pre>\n\n\n\n<p>Change it to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">anon_login=NO<\/code><\/pre>\n\n\n\n<p>If you want to allow local users to login, uncomment the following line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">#local_enable=YES<\/code><\/pre>\n\n\n\n<p>Change it to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">local_enable=YES<\/code><\/pre>\n\n\n\n<p>Save and close the file when you are finished.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3--setting-up-the-user-account\">Step 3 \u2014 Setting Up the User Account<\/h2>\n\n\n\n<p>Once the FTP server is installed and configured, we need to set up a user account.<\/p>\n\n\n\n<p>For security reasons, it is recommended to create a separate user account for FTP access. To create a user account, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo adduser ftpuser<\/code><\/pre>\n\n\n\n<p>You will be prompted to set the password for the user.<\/p>\n\n\n\n<p>Once the user is created, we need to create a directory for the user. This is the directory where the user will be able to access and upload files.<\/p>\n\n\n\n<p>To do this, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mkdir -p \/home\/ftpuser\/ftp<\/code><\/pre>\n\n\n\n<p>Now, we need to set the correct permissions for the directory. We want the user to be able to access the directory, but not to be able to write to other users\u2019 directories. To do this, run the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo chown nobody:nogroup \/home\/ftpuser\/ftp\n$ sudo chmod a-w \/home\/ftpuser\/ftp<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4--connecting-to-the-ftp-server\">Step 4 \u2014 Connecting to the FTP Server<\/h2>\n\n\n\n<p>Now that the FTP server is configured and the user account is set up, you can connect to the FTP server using an FTP client.<\/p>\n\n\n\n<p>To connect, you will need the IP address of the server, the username, and the password.<\/p>\n\n\n\n<p>Once you have all the required information, open the FTP client and enter the details.<\/p>\n\n\n\n<p>If the connection is successful, you will be able to access the FTP directory and upload\/download files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>In this guide, we have shown how to set up an FTP server on an Ubuntu 18.04 20.04 22.04. We have also discussed how to configure the FTP server and create a user account.<\/p>\n\n\n\n<p>Setting up an FTP server can be useful for a variety of purposes. You can use it to share files with other users or to store your own files in a remote location.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>FTP (File Transfer Protocol) is a commonly used protocol for exchanging files over the Internet. It allows users to upload, download, and manage files on a remote server. Setting up an FTP server on an Ubuntu 18.04 20.04 22.04 LTS can be useful for a variety of purposes. In this guide, we will discuss how ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\" 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],"tags":[],"yoast_head":"\n<title>How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We&#039;ll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.\" \/>\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\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We&#039;ll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\" \/>\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-02-02T12:11:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-02T12:11:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_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=\"3 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\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS\",\"datePublished\":\"2023-02-02T12:11:02+00:00\",\"dateModified\":\"2023-02-02T12:11:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\"},\"wordCount\":524,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\",\"name\":\"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-02-02T12:11:02+00:00\",\"dateModified\":\"2023-02-02T12:11:06+00:00\",\"description\":\"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We'll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS\"}]},{\"@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=1780005063\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"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 FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations","description":"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We'll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.","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\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations","og_description":"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We'll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-02-02T12:11:02+00:00","article_modified_time":"2023-02-02T12:11:06+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/01\/ftp_ubuntu_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS","datePublished":"2023-02-02T12:11:02+00:00","dateModified":"2023-02-02T12:11:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/"},"wordCount":524,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/","name":"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-02-02T12:11:02+00:00","dateModified":"2023-02-02T12:11:06+00:00","description":"This guide will show you how to install and configure an FTP server on Ubuntu 18.04, 20.04 and 22.04. We'll provide detailed steps to help you set up user accounts, secure the server, and get a fully-functional FTP server running on your system.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-ftp-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to install FTP server on Ubuntu 18.04 20.04 22.04 LTS"}]},{"@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=1780005063","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","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\/3620"}],"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=3620"}],"version-history":[{"count":11,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3620\/revisions"}],"predecessor-version":[{"id":3669,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3620\/revisions\/3669"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=3620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=3620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=3620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}