{"id":3200,"date":"2022-12-10T10:44:18","date_gmt":"2022-12-10T10:44:18","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=3200"},"modified":"2022-12-10T10:49:08","modified_gmt":"2022-12-10T10:49:08","slug":"setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/","title":{"rendered":"Set Up Password Authentication With Apache 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\/2022\/12\/apache_pass_en.jpg\" alt=\"configure password for apache ubuntu 18.04 20.04 22.04 LTS \" class=\"wp-image-3234\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Apache is the most popular web server and most widely used web server in the world. It provides many powerful features including dynamically loadable modules, robust media support, and extensive integration with other popular software. In this guide, we will demonstrate how to setup a password authentication on an Apache web server configured on Ubuntu 18.04\/20.04\/22.04 LTS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Requirements<\/h2>\n\n\n\n<p>Before you begin this guide, you&#8217;ll need the following:<\/p>\n\n\n\n<ul><li>Access to a user account with&nbsp;<strong>sudo<\/strong>&nbsp;privileges.<\/li><li>Apache installed on <strong>Ubuntu 18.04\/20.04\/22.04 LTS<\/strong>.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1--creating-a-password-file\">Step 1 : Creating a Password File<\/h2>\n\n\n\n<p>Before we can set up password authentication, we need to create a password file that Apache can refer to when a user attempts to access a restricted resource.<\/p>\n\n\n\n<p>We will use the&nbsp;<strong>htpasswd<\/strong>&nbsp;utility to create this file. This utility can create encrypted passwords, which we will store in the file.<\/p>\n\n\n\n<p>To create the file and begin adding users, type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo htpasswd -c \/etc\/apache2\/.htpasswd &lt;username&gt;<\/code><\/pre>\n\n\n\n<p>You will be prompted for a password for the user. Enter a secure password, and confirm it. The <code>-c<\/code> flag tells the utility that this is the first user we are creating in the file.<\/p>\n\n\n\n<p>For subsequent users, you can leave out the <code>-c<\/code> flag. This will add the user to the existing file instead of overwriting it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo htpasswd \/etc\/apache2\/.htpasswd &lt;username&gt;<\/code><\/pre>\n\n\n\n<p>When you are finished adding users, you can verify the content of the file by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ cat \/etc\/apache2\/.htpasswd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2--configuring-apache\">Step 2 : Configuring Apache<\/h2>\n\n\n\n<p>Now that we have created the password file, we can configure Apache to refer to it.<\/p>\n\n\n\n<p>We can do this by editing the configuration file of the directory that we are restricting access to. This can be the root directory of the server, or a subdirectory.<\/p>\n\n\n\n<p>For example, if we wanted to restrict access to the root directory, we would edit the following file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/apache2\/sites-enabled\/000-default.conf<\/code><\/pre>\n\n\n\n<p>If we wanted to restrict access to a subdirectory, we would edit the corresponding file within the&nbsp;<strong>sites-enabled<\/strong>&nbsp;directory.<\/p>\n\n\n\n<p>We need to add the following configuration block to the file. This block should be placed between the&nbsp;tags that refer to the directory we are restricting access to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"apacheconf\" class=\"language-apacheconf\">&lt;Directory \/var\/www\/html&gt;\n    AuthType Basic\n    AuthName \"Restricted Content\"\n    AuthUserFile \/etc\/apache2\/.htpasswd\n    Require valid-user\n&lt;\/Directory&gt;<\/code><\/pre>\n\n\n\n<p>The&nbsp;<strong>AuthType<\/strong>&nbsp;directive tells Apache what type of authentication we are using. In this case, we are using basic authentication.<\/p>\n\n\n\n<p>The&nbsp;<strong>AuthName<\/strong>&nbsp;directive provides a name for the authentication realm. This will be displayed in the authentication dialogue presented to the user.<\/p>\n\n\n\n<p>The&nbsp;<strong>AuthUserFile<\/strong>&nbsp;directive tells Apache where to look for the user credentials. In this case, we are using the file we created in Step 1.<\/p>\n\n\n\n<p>The last directive,&nbsp;<strong>require valid-user<\/strong>, tells Apache that the user must provide valid credentials to access the restricted resource.<\/p>\n\n\n\n<p>When you are finished, save and close the file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3--restart-apache\">Step 3 : Restart Apache<\/h2>\n\n\n\n<p>Now that we have configured Apache to refer to our password file, we need to restart the server to enable the changes.<\/p>\n\n\n\n<p>We can do this by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>At this point, Apache should be configured to require valid credentials for access to the specified directory. When a user attempts to access the directory, they should see a prompt like this:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"318\" height=\"221\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/htaccess.png\" alt=\"auth user password access website\" class=\"wp-image-3201\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/htaccess.png 318w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/htaccess-300x208.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/htaccess-150x104.png 150w\" sizes=\"(max-width: 318px) 100vw, 318px\" \/><\/figure><\/div>\n\n\n<p>If the user enters valid credentials, they will be granted access. Otherwise, they will see an error message.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Apache is the most popular web server and most widely used web server in the world. It provides many powerful features including dynamically loadable modules, robust media support, and extensive integration with other popular software. In this guide, we will demonstrate how to setup a password authentication on an Apache web server configured on Ubuntu ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-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":[3,4],"tags":[],"yoast_head":"\n<title>Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.\" \/>\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-password-authentication-with-apache-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=\"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-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=\"2022-12-10T10:44:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-10T10:49:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_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\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS\",\"datePublished\":\"2022-12-10T10:44:18+00:00\",\"dateModified\":\"2022-12-10T10:49:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/\"},\"wordCount\":530,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Security\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/\",\"name\":\"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2022-12-10T10:44:18+00:00\",\"dateModified\":\"2022-12-10T10:49:08+00:00\",\"description\":\"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-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\":\"Set Up Password Authentication With Apache 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=1783029557\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1783029557\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","description":"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.","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-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","og_description":"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.","og_url":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-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":"2022-12-10T10:44:18+00:00","article_modified_time":"2022-12-10T10:49:08+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/12\/apache_pass_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\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS","datePublished":"2022-12-10T10:44:18+00:00","dateModified":"2022-12-10T10:49:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/"},"wordCount":530,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Security","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/","url":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/","name":"Set Up Password Authentication With Apache on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2022-12-10T10:44:18+00:00","dateModified":"2022-12-10T10:49:08+00:00","description":"We will demonstrate how to setup password authentication on an Apache web server configured on Debian and Ubuntu 18.04\/20.04\/22.04 LTS.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-on-ubuntu-18-04-20-04-22-04-lts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/setup-password-authentication-with-apache-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":"Set Up Password Authentication With Apache 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=1783029557","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1783029557","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\/3200"}],"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=3200"}],"version-history":[{"count":16,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3200\/revisions"}],"predecessor-version":[{"id":3839,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3200\/revisions\/3839"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=3200"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=3200"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=3200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}