{"id":5838,"date":"2019-07-02T07:00:52","date_gmt":"2019-07-02T07:00:52","guid":{"rendered":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?p=5838"},"modified":"2019-07-02T07:00:52","modified_gmt":"2019-07-02T07:00:52","slug":"install-wordpress-on-ubuntu-18-04-using-lamp-stack","status":"publish","type":"post","link":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/","title":{"rendered":"How to Install WordPress on Ubuntu 18.04 Using LAMP Stack?"},"content":{"rendered":"<p>WordPress is obviously one of the most popular Content Management Systems (CMS) available in the market. There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. This method allows you to host your very own WordPress website on a VPS. In this tutorial, you will learn about installing WordPress on Ubuntu 18.04.<\/p>\n<p>Many of them use this method as it offers full control of WordPress backend for experimentation and advanced uses.<\/p>\n<p>Also, users mostly keep LAMP stack for their WordPress development environment.<\/p>\n<p>LAMP refers to Linux, Apache, MySQL, and PHP. Linux operating system comes with Apache web server and MySQL Database that uses PHP to process dynamic website content.<\/p>\n<p>In this tutorial, you will learn to install WordPress on Ubuntu 18.04 using LAMP stack.<\/p>\n<div style=\"background-color: #e0ffff; padding: 10px;\"><strong>Note:<\/strong> Make sure that you have the required sudo access as this method calls for a couple of installations and a basic firewall configuration.<\/div>\n<p>Also, note that before you install WordPress on Ubuntu, you need to access your VPS using SSH.<\/p>\n<h3>Install and Configure Apache 2<\/h3>\n<p>LAMP uses the popular and widely used, Apache web server 2. Ubuntu\u2019s package manager helps to install Apache as shown below:<\/p>\n<pre class=\"lang:default decode:true \">sudo apt update\r\nsudo apt install apache2<\/pre>\n<p>These commands need you to provide passwords. On the command prompt, press Y and hit ENTER to continue the installation.<\/p>\n<p>By default, the UFW firewall is available in all the Ubuntu installations. The UFW firewall allows traffic via HTTP as well as HTTPS. If you aren\u2019t using UFW, skip this step. Use the below command to check the UFW application profiles:<\/p>\n<pre class=\"lang:default decode:true \">sudo ufw app list<\/pre>\n<p>This will provide the below output:<\/p>\n<pre class=\"lang:default decode:true \">Available applications:\r\nApache\r\nApache Full\r\nApache Secure\r\nOpenSSH<\/pre>\n<p>Execute the below command to allow HTTP and HTTPS traffic for Apache Full profile:<\/p>\n<pre class=\"lang:default decode:true \">sudo ufw allow in \"Apache Full\"<\/pre>\n<p>To confirm if this has worked, check this profile information by using:<\/p>\n<pre class=\"lang:default decode:true \">sudo ufw app info \"Apache Full\"<\/pre>\n<p>In order to verify if Apache was installed correctly, you will need the public IP address. Use the below command to get it:<\/p>\n<pre class=\"lang:default decode:true \">ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's\/\\\/.*$\/\/'<\/pre>\n<p>You will be provided with 2-3 IPs using this command. If you want to try all of this, use http:\/\/your_public_IPAddress on a browser. The default Ubuntu Apache page will get displayed with this.<\/p>\n<h3>Install MySQL<\/h3>\n<p>After the web server starts running, you can install the MySQL database. This can be done using the below command:<\/p>\n<pre class=\"lang:default decode:true \">sudo apt install mysql-server<\/pre>\n<p>This command will ask for a password. After starting the installation, based on your preference you can press Y and <strong>ENTER<\/strong> to complete the installation. To open MySQL terminal use the below command:<\/p>\n<pre class=\"lang:default decode:true \">sudo mysql<\/pre>\n<p>Set a password for the root user using the command below:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Password;<\/pre>\n<p>To verify these changes, use Flush command as shown below:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt; FLUSH PRIVILEGES;<\/pre>\n<p>To come back from the MySQL prompt, type exit. With this the MySQL installation gets completed.<\/p>\n<pre class=\"lang:default decode:true \">Install PHP<\/pre>\n<p>For displaying dynamic content, you need PHP which can be installed by using:<\/p>\n<pre class=\"lang:default decode:true \">sudo apt install php libapache2-mod-php php-mysql<\/pre>\n<p>Use the below command to install additional PHP extensions for WordPress:<\/p>\n<pre class=\"lang:default decode:true \">sudo apt install php-curl php-gd php-xml php-mbstring php-xmlrpc php-zip php-soap php-intl<\/pre>\n<p>The index.html gets displayed as a default setting, when you request for a directory. If you want to show index.php instead of index.html, open the dir.conf file using the vi editor as below:<\/p>\n<pre class=\"lang:default decode:true \">sudo vi \/etc\/apache2\/mods-enabled\/dir.conf<\/pre>\n<p>It will appear as below:<\/p>\n<pre class=\"lang:default decode:true\">&lt;IfModule mod_dir.c&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;\r\n\r\nDirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm \r\n\r\n&lt;\/IfModule&gt;<\/pre>\n<p>Swap the positions of <strong>index.html<\/strong> and <strong>index.php<\/strong> and save the file.<\/p>\n<p>To make the changes visible, restart the Apache server using:<\/p>\n<pre class=\"lang:default decode:true \">sudo systemctl restart apache2<\/pre>\n<p>For PHP testing, you can create a sample PHP file sample.php and add the below lines of code:<br \/>\n<!--?php phpinfo(); ?--><br \/>\nAdd this file to the Web Root of Apache which is located at \u2013 \/var\/www\/html\/<\/p>\n<p>After saving this, try to access this page by using http:\/\/Your_Public_IP\/Sample.php.<\/p>\n<h3>MySQL Setup for WordPress<\/h3>\n<p>Login into MySQL as a root user. For this, use the command below:<\/p>\n<pre class=\"lang:default decode:true \">mysql -u root -p<\/pre>\n<p>You will be prompted to type the password for root that is set up earlier. After logging in, it is possible to create a separate database for WordPress.<\/p>\n<p>Below is a new DB created called WordPressDB:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt; CREATE DATABASE WordPressDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;<\/pre>\n<p>Now, create a separate user for WordPress with the name WordPressUser. For creating a new user and granting privileges, use the command below:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt; GRANT ALL ON WordPressDB.* TO ' WordPressUser '@'localhost' IDENTIFIED BY 'NewPasswordToBeSet';<\/pre>\n<p>Give a strong password in place of <strong>NewPasswordToBeSet<\/strong>. To verify these changes, use the command:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt; FLUSH PRIVILEGES;<\/pre>\n<p>After it gets completed, exit the MySQL prompt.<\/p>\n<h3>Prepare to Install WordPress on Ubuntu<\/h3>\n<p>Create a configuration file, for example :WordPress.conf. Locate it to \/etc\/apache2\/sites-available\/. This will be a copy of the default configuration file that is already present in this location.<\/p>\n<div style=\"background-color: #e0ffff; padding: 10px;\"><b>Note:<\/b>\u00a0All locale names in Linux are case sensitive!<\/div>\n<p>Additionally, create a WordPress directory (or provide any other name at location \/var\/www\/). The complete location would appear as \/var\/www\/wordpress.<\/p>\n<p>For testing this, the file WordPress.conf will be the Apache configuration file. In the file, you can enable .htaccess by including these lines to the VirtualHost block:<\/p>\n<pre class=\"\">&lt;Directory \/var\/www\/wordpress \/&gt;\r\n\u00a0\u00a0\u00a0AllowOverride All\r\n&lt;\/Directory&gt;<\/pre>\n<p>After editing this, save the file.<\/p>\n<p>Next, enable the mod_rewrite to use WordPress permalink feature. You can do it with the below command:<\/p>\n<pre class=\"lang:default decode:true\">sudo a2enmod rewrite<\/pre>\n<p>In the file \/etc\/apache2\/apache2.conf, change the ServerName directive by offering the server\u2019s IP or hostname.<\/p>\n<p>This complete configuration can be tested by using the below command:<\/p>\n<div style=\"background-color: #e0ffff; padding: 10px;\"><strong>Note:<\/strong> Check if it gives the Syntax OK message. Ignore any other additional message as this won\u2019t impact the installation.<\/div>\n<pre class=\"lang:default decode:true \">sudo apache2ctl configtest<\/pre>\n<p>For verifying the changes done, restart the Apache server using the previously mentioned restart command:<\/p>\n<pre class=\"lang:default decode:true \">sudo systemctl restart apache2<\/pre>\n<h3>Configure and Install WordPress on Ubuntu<\/h3>\n<p>You can change your location to a directory and start downloading WordPress. This can be done as shown below:<\/p>\n<pre class=\"lang:default decode:true \">cd \/tmp<\/pre>\n<pre class=\"lang:default decode:true\">curl -O https:\/\/wordpress.org\/latest.tar.gz<\/pre>\n<p>Use the below command to extract this file:<\/p>\n<pre class=\"lang:default decode:true \">tar xzvf latest.tar.gz<\/pre>\n<p>Now you can create a .htaccess file:<\/p>\n<pre class=\"lang:default decode:true \">vi \/tmp\/wordpress\/.htaccess<\/pre>\n<p>Save the file and rename the wp-config-sample.php file using the command:<\/p>\n<pre class=\"lang:default decode:true \">mv \/tmp\/wordpress\/wp-config-sample.php \/tmp\/wordpress\/wp-config.php<\/pre>\n<p>Create the below folder at the given location:<\/p>\n<pre class=\"lang:default decode:true \">mkdir \/tmp\/wordpress\/wp-content\/upgrade<\/pre>\n<p>With this, the initial setup gets completed which can be copied to the document root.<\/p>\n<pre class=\"lang:default decode:true \">sudo cp -a \/tmp\/wordpress\/. \/var\/www\/wordpress<\/pre>\n<p>To check if everything works correctly, you will have to change the ownership of WordPress files to the www-data users and groups. These users are those that Apache web server will use.<\/p>\n<p>For changing the ownership, you can use this command:<\/p>\n<pre class=\"lang:default decode:true \">sudo chown -R www-data:www-data \/var\/www\/wordpress<\/pre>\n<p>Also, it is important to set the correct permission to the directories and files:<\/p>\n<pre class=\"lang:default decode:true\">sudo find \/var\/www\/wordpress\/ -type d -exec chmod 750 {} \\;<\/pre>\n<pre class=\"lang:default decode:true \">sudo find \/var\/www\/wordpress\/ -type f -exec chmod 640 {} \\;<\/pre>\n<p>For the initial configuration, it requires the WordPress salt to be generated. This can be done using:<\/p>\n<pre class=\"lang:default decode:true \">curl -s https:\/\/api.wordpress.org\/secret-key\/1.1\/salt\/<\/pre>\n<p>This will give a different output every time and will comprise of a list of salt values. The output of the above command needs to be copied and added to the wp-config.php file.<\/p>\n<pre class=\"lang:default decode:true \">vi \/var\/www\/wordpress\/wp-config.php<\/pre>\n<p>Replace the existing dummy values within this file. Save the file after making the changes.<\/p>\n<p>The wp-config.php file contains some Database configuration at the top. Replace the <strong>DB_NAME, DB_USER, DB_PASSWORD<\/strong> with values you have created for WordPress.<\/p>\n<pre class=\"lang:default decode:true \">define('DB_NAME', 'WordPressDB');\r\n\r\n\/** MySQL database username *\/\r\ndefine('DB_USER', 'WordPressUser');\r\n\/** MySQL database password *\/\r\ndefine('DB_PASSWORD', 'DB_Password');\r\nAlso, you can add the file system method at the very bottom, as shown below:\r\ndefine('FS_METHOD', 'direct');<\/pre>\n<p>Saving this file completes the backend setup. Now WordPress can be accessed via the interface by using the URL http:\/\/Your_IP_Address.<\/p>\n<p>Next settings will be similar to the regular WordPress setup. First, you will be asked to select a language.<\/p>\n<p>Then you will be redirected to a page where you can set the username and password.<\/p>\n<p>Make sure that you change the username and password for enhanced WordPress security. After clicking the Install WordPress button, you will complete your WordPress setup and will be directed to a login screen.<\/p>\n<p>Here enter the WordPress user name and password to access the dashboard.<\/p>\n<h3>Wrap Up<\/h3>\n<p>Now you have learned to install WordPress on Ubuntu 18.04 with the LAMP stack. From here you can start discovering all the amazing WordPress features and develop some amazing websites.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is obviously one of the most popular Content Management Systems (CMS) available in the market. There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. This method allows you to host your very own WordPress website on a VPS. In this tutorial, you will learn about installing [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[800,801,802],"class_list":["post-5838","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-wordpress-faq","tag-install-wordpress","tag-install-wordpress-on-ubuntu-18-04","tag-lamp-stack"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack<\/title>\n<meta name=\"description\" content=\"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack\" \/>\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.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack\" \/>\n<meta property=\"og:description\" content=\"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-02T07:00:52+00:00\" \/>\n<meta name=\"author\" content=\"Pallavi Godse\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pallavi Godse\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/\",\"name\":\"Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\"},\"datePublished\":\"2019-07-02T07:00:52+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\"},\"description\":\"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install WordPress on Ubuntu 18.04 Using LAMP Stack?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\",\"name\":\"Pallavi Godse\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eefc9695ea2b2c6e143c9c9919701aaa?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eefc9695ea2b2c6e143c9c9919701aaa?s=96&d=blank&r=g\",\"caption\":\"Pallavi Godse\"},\"description\":\"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/pallavi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack","description":"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack","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.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/","og_locale":"en_GB","og_type":"article","og_title":"Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack","og_description":"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack","og_url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2019-07-02T07:00:52+00:00","author":"Pallavi Godse","twitter_misc":{"Written by":"Pallavi Godse","Estimated reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/","name":"Steps to Install WordPress on Ubuntu 18.04 Using LAMP Stack","isPartOf":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website"},"datePublished":"2019-07-02T07:00:52+00:00","author":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945"},"description":"There are multiple ways in which you can install WordPress \u2013 one of them is using LAMP. Learn to install WordPress on Ubuntu 18.04 using LAMP stack","breadcrumb":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/install-wordpress-on-ubuntu-18-04-using-lamp-stack\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"How to Install WordPress on Ubuntu 18.04 Using LAMP Stack?"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945","name":"Pallavi Godse","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eefc9695ea2b2c6e143c9c9919701aaa?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eefc9695ea2b2c6e143c9c9919701aaa?s=96&d=blank&r=g","caption":"Pallavi Godse"},"description":"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/pallavi\/"}]}},"views":1296,"_links":{"self":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/5838","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=5838"}],"version-history":[{"count":1,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/5838\/revisions"}],"predecessor-version":[{"id":5839,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/5838\/revisions\/5839"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=5838"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=5838"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=5838"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}