{"id":3093,"date":"2022-11-05T21:12:26","date_gmt":"2022-11-05T21:12:26","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=3093"},"modified":"2022-11-05T21:15:51","modified_gmt":"2022-11-05T21:15:51","slug":"how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/","title":{"rendered":"How to install and configure Apache Virtual Hosts 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\/11\/apache_ubuntu_en.jpg\" alt=\"Install and Configuring Apache Virtual Hosts on Ubuntu LTS\" class=\"wp-image-3107\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-install-apache\">Introduction<\/h2>\n\n\n\n<p>Virtual hosts allow you to serve multiple websites on a single server. This can be useful if you want to host multiple websites on a single server, or if you want to move an existing website to a new server.<\/p>\n\n\n\n<p>In this guide, we will show you how to set up virtual hosts on an Ubuntu 18.04 server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-install-apache\">Step 1: Install Apache<\/h2>\n\n\n\n<p>Before we can set up virtual hosts, we need to install the Apache web server.<\/p>\n\n\n\n<p>We can install Apache using the apt package manager:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update\n$ sudo apt install apache2<\/code><\/pre>\n\n\n\n<p>Once Apache is installed, we can verify that it is running by visiting our server&#8217;s IP address in a web browser:<\/p>\n\n\n\n<p>http:\/\/server_ip_address<\/p>\n\n\n\n<p>You should see the Apache default page, which looks like this :<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"804\" height=\"555\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache-default-page.png\" alt=\"Apache default page ubuntu\" class=\"wp-image-3131\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache-default-page.png 804w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache-default-page-300x207.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache-default-page-768x530.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache-default-page-150x104.png 150w\" sizes=\"(max-width: 804px) 100vw, 804px\" \/><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-set-up-a-domain-name\">Step 2: Set Up a Domain Name<\/h2>\n\n\n\n<p>In order for virtual hosts to work, you will need to set up a domain name that points to your server&#8217;s IP address.<\/p>\n\n\n\n<p>If you do not already have a domain name, you can <a href=\"https:\/\/www.webhi.com\/register-domain-name\" target=\"_blank\" rel=\"noreferrer noopener\">purchase one from our website<\/a>.<\/p>\n\n\n\n<p>Once you have a domain name, you will need to set up an A record that points to your server&#8217;s IP address.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-create-the-virtual-host-files\">Step 3: Create the Virtual Host Files<\/h2>\n\n\n\n<p>Virtual host files are stored in the \/etc\/apache2\/sites-available directory.<\/p>\n\n\n\n<p>We will create a virtual host file for each website that we want to host on our server.<\/p>\n\n\n\n<p>For example, let&#8217;s say we wanted to create a virtual host file for a website called example.com. We would create a file called \/etc\/apache2\/sites-available\/example.com.conf with the following contents:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"apacheconf\" class=\"language-apacheconf\">&lt;VirtualHost *:80&gt;\n    ServerAdmin webmaster@example.com\n    ServerName example.com\n    ServerAlias www.example.com\n    DocumentRoot \/var\/www\/example.com\/public_html\n    ErrorLog ${APACHE_LOG_DIR}\/error.log\n    CustomLog ${APACHE_LOG_DIR}\/access.log combined\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<p>Be sure to replace the example.com domain name with your own domain name.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-enable-the-virtual-host-files\">Step 4: Enable the Virtual Host Files<\/h2>\n\n\n\n<p>Once you have created your virtual host files, you need to enable them.<\/p>\n\n\n\n<p>You can enable virtual host files with the a2ensite command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2ensite example.com.conf<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-disable-the-default-virtual-host\">Step 5: Disable the Default Virtual Host<\/h2>\n\n\n\n<p>Apache comes with a default virtual host file called 000-default.conf. This file is located in the \/etc\/apache2\/sites-available directory.<\/p>\n\n\n\n<p>We need to disable this file so that it does not conflict with our virtual host files.<\/p>\n\n\n\n<p>We can disable the default virtual host file with the a2dissite command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2dissite 000-default.conf<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-restart-apache\">Step 6: Restart Apache<\/h2>\n\n\n\n<p>After you have created and enabled your virtual host files, you need to restart the Apache web server so that the changes can take effect:<\/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=\"step-7-test-your-virtual-hosts\">Step 7: Test Your Virtual Hosts<\/h2>\n\n\n\n<p>You can now test your virtual hosts by visiting your website in a web browser.<\/p>\n\n\n\n<p>For example, if you set up a virtual host file for the example.com domain, you would visit the following URL in your web browser:<\/p>\n\n\n\n<p>http:\/\/example.com<\/p>\n\n\n\n<p>You should see the website that you set up in the DocumentRoot directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>In this guide, we showed you how to set up virtual hosts on an Ubuntu server. Virtual hosts allow you to host multiple websites on a single server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Virtual hosts allow you to serve multiple websites on a single server. This can be useful if you want to host multiple websites on a single server, or if you want to move an existing website to a new server. In this guide, we will show you how to set up virtual hosts on ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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,4],"tags":[],"yoast_head":"\n<title>How to install and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.\" \/>\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-install-and-configure-apache-virtual-hosts-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 and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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-11-05T21:12:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-05T21:15:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_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-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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 and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS\",\"datePublished\":\"2022-11-05T21:12:26+00:00\",\"dateModified\":\"2022-11-05T21:15:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/\"},\"wordCount\":487,\"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\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/\",\"name\":\"How to install and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2022-11-05T21:12:26+00:00\",\"dateModified\":\"2022-11-05T21:15:51+00:00\",\"description\":\"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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 and configure Apache Virtual Hosts 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 and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","description":"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.","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-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to install and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","og_description":"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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-11-05T21:12:26+00:00","article_modified_time":"2022-11-05T21:15:51+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/11\/apache_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-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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 and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS","datePublished":"2022-11-05T21:12:26+00:00","dateModified":"2022-11-05T21:15:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/"},"wordCount":487,"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\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/","name":"How to install and configure Apache Virtual Hosts on Ubuntu 18.04\/20.04\/22.04 LTS - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2022-11-05T21:12:26+00:00","dateModified":"2022-11-05T21:15:51+00:00","description":"In this guide, we will show you how to set up Apache virtual hosts on a Linux Ubuntu 18.04\/20.04\/22.04 LTS server.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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-install-and-configure-apache-virtual-hosts-on-ubuntu-18-04-20-04-22-04-lts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-apache-virtual-hosts-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 and configure Apache Virtual Hosts 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\/3093"}],"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=3093"}],"version-history":[{"count":15,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3093\/revisions"}],"predecessor-version":[{"id":3135,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3093\/revisions\/3135"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=3093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=3093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=3093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}