{"id":1302,"date":"2020-09-11T17:27:59","date_gmt":"2020-09-11T17:27:59","guid":{"rendered":"http:\/\/shaplakanon.com\/wpsupport\/?p=1302"},"modified":"2020-09-11T17:50:58","modified_gmt":"2020-09-11T17:50:58","slug":"how-to-install-wordpress-on-ubuntu-apache-server","status":"publish","type":"post","link":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/","title":{"rendered":"How to install wordpress on ubuntu apache server"},"content":{"rendered":"\n<p><a href=\"https:\/\/wordpress.org\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WordPress<\/a> is the most popular open source blogging system and CMS on the Web. It is based on PHP and MySQL. Its features can be extended with thousands of free plugins and themes.<\/p>\n\n\n\n<p>In this tutorial we will install WordPress and show <a href=\"https:\/\/www.reddit.com\/user\/abuduzana\/comments\/imzlo1\/how_to_make_a_website_reddit_user_guide\/\" target=\"_blank\" rel=\"noreferrer noopener\">how to make a website<\/a> on Apache2 server and create your first post.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What you\u2019ll learn<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>How to set up WordPress<\/li><li>How to configure WordPress<\/li><li>How to create first post<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Install WordPress<\/h2>\n\n\n\n<p>To install WordPress, use following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install wordpress php libapache2-mod-php mysql-server php-mysql\n<\/code><\/pre>\n\n\n\n<p>If you haven\u2019t installed MySQL before, you will be asked for password for \u201croot\u201d MySQL user. You can leave this field empty.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Apache for WordPress<\/h2>\n\n\n\n<p>Create Apache site for WordPress. Create&nbsp;<code>\/etc\/apache2\/sites-available\/wordpress.conf<\/code>&nbsp;with following lines:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Alias \/blog \/usr\/share\/wordpress\n&lt;Directory \/usr\/share\/wordpress>\n    Options FollowSymLinks\n    AllowOverride Limit Options FileInfo\n    DirectoryIndex index.php\n    Order allow,deny\n    Allow from all\n&lt;\/Directory>\n&lt;Directory \/usr\/share\/wordpress\/wp-content>\n    Options FollowSymLinks\n    Order allow,deny\n    Allow from all\n&lt;\/Directory>\n<\/code><\/pre>\n\n\n\n<p>Then, enable this site with\u00a0<code>sudo a2ensite wordpress<\/code>, enable URL rewriting with\u00a0<code>sudo a2enmod rewrite<\/code>\u00a0and reload apache2 with\u00a0<code>sudo service apache2 reload<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure database<\/h2>\n\n\n\n<p>To configure WordPress, we need to create MySQL database. Let\u2019s do it!<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo mysql -u root\nWelcome to the MySQL monitor.  Commands end with ; or \\g.\nYour MySQL connection id is 7\nServer version: 5.7.20-0ubuntu0.16.04.1 (Ubuntu)\n\nCopyright (c) 2000, 2017, Oracle and\/or its affiliates. All rights reserved.\n\nOracle is a registered trademark of Oracle Corporation and\/or its\naffiliates. Other names may be trademarks of their respective\nowners.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nmysql> CREATE DATABASE wordpress;\nQuery OK, 1 row affected (0,00 sec)\n\nmysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER\n    -> ON wordpress.*\n    -> TO wordpress@localhost\n    -> IDENTIFIED BY '&lt;your-password>';\nQuery OK, 1 row affected (0,00 sec)\n\nmysql> FLUSH PRIVILEGES;\nQuery OK, 1 row affected (0,00 sec)\n\nmysql> quit\nBye\n<\/code><\/pre>\n\n\n\n<p>Now, let\u2019s configure <a href=\"https:\/\/www.reddit.com\/user\/abuduzana\/comments\/fhwmgp\/3_best_wordpress_hosting_in_2020_recommendation\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress<\/a> to use this database. Open\u00a0<code>\/etc\/wordpress\/config-localhost.php<\/code>\u00a0and write:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\ndefine('DB_NAME', 'wordpress');\ndefine('DB_USER', 'wordpress');\ndefine('DB_PASSWORD', '&lt;your-password>');\ndefine('DB_HOST', 'localhost');\ndefine('DB_COLLATE', 'utf8_general_ci');\ndefine('WP_CONTENT_DIR', '\/usr\/share\/wordpress\/wp-content');\n?>\n<\/code><\/pre>\n\n\n\n<p>Enable MySQL with\u00a0<code>sudo service mysql start<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure WordPress<\/h2>\n\n\n\n<p>Open\u00a0<code>yourdomain.com\/blog<\/code>\u00a0in your browser. You will be asked for title of your new site, username, password and address e-mail. You can choose if you want to make your site indexed by search engines.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\" alt=\"WordPress installation\"\/><\/figure>\n\n\n\n<p>You can now login under&nbsp;<code>localhost\/blog\/wp-login.php<\/code>. In Dashboard, you will see bunch of icons and options. Don\u2019t worry, it\u2019s easy!<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/d\/dbcc976a4edf0c7bbf0b4bbd362de4bc0e462ae4_2_690x546.png\" alt=\"Dashboard\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Write your first post<\/h2>\n\n\n\n<p>You have probably noticed that \u201cHello world!\u201d post. We will delete it and write something more interesting\u2026<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/original\/2X\/7\/70043beb24b972e09d823eeb9338517e776ef9d2.png\" alt=\"All Posts\"\/><\/figure>\n\n\n\n<p>From Dashboard (<code>yourdomain.com\/blog\/wp-admin\/<\/code>), select \u201cPosts\u201d icon and click on \u201cAll Posts\u201d. Mouse over the \u201cHello world!\u201d post title and select\u00a0<strong>Trash<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/f\/ff775de703a6b0d155d813d137c238a2e4ceb335_2_690x546.png\" alt=\"Move to Trash\"\/><\/figure>\n\n\n\n<p>To create new post, click on the \u201cAdd New\u201d button. You should notice a fancy WYSIWYG editor with simple (but powerful) text formatting options. You may want to switch to Text mode, if you prefer pure HTML.<\/p>\n\n\n\n<p>Let\u2019s write something! It\u2019s as easy, as using text processors that you know from office suites.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/f\/f6492cadedf6a078a8745f1bd383405b7ce16033_2_690x546.png\" alt=\"First post\"\/><\/figure>\n\n\n\n<p>Now, click the Publish button. You can now view your brand new post!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">That\u2019s all!<\/h2>\n\n\n\n<p>Of course, this tutorial has only described basics of WordPress usage, you can do much more with this blogging platform\/CMS. You can install one of thousands of available (free and commercial) plugins and themes. You can even configure it as forum (with&nbsp;<a href=\"https:\/\/bbpress.org\/\">bbPress<\/a>&nbsp;plugin), microblogging platform (<a href=\"https:\/\/buddypress.org\/\">BuddyPress<\/a>), eCommerce platform (<a href=\"https:\/\/woocommerce.com\/\">WooCommerce<\/a>) or extend existing WordPress features with plugins like&nbsp;<a href=\"https:\/\/jetpack.com\/\">JetPack<\/a>&nbsp;or&nbsp;<a href=\"http:\/\/www.laptoptips.ca\/projects\/tinymce-advanced\/\">TinyMCE Advanced<\/a>.<\/p>\n\n\n\n<p>WordPress manual and documentation is available in the&nbsp;<a href=\"https:\/\/codex.wordpress.org\/\">WordPress Codex<\/a>.You can read it to learn more about WordPress usage, and even something about themes\/plugins development.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is the most popular open source blogging system and CMS on the Web. It is based on PHP and<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[51],"tags":[300,301],"class_list":["post-1302","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-install-wordpress","tag-ubuntu-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install wordpress on ubuntu apache server - WordPress Support<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install wordpress on ubuntu apache server - WordPress Support\" \/>\n<meta property=\"og:description\" content=\"WordPress is the most popular open source blogging system and CMS on the Web. It is based on PHP and\" \/>\n<meta property=\"og:url\" content=\"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/\" \/>\n<meta property=\"og:site_name\" content=\"WordPress Support\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/getwpsupport\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-11T17:27:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-11T17:50:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\" \/>\n<meta name=\"author\" content=\"ShaplaKanon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ruhul24\" \/>\n<meta name=\"twitter:site\" content=\"@ruhul24\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ShaplaKanon\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/\"},\"author\":{\"name\":\"ShaplaKanon\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\"},\"headline\":\"How to install wordpress on ubuntu apache server\",\"datePublished\":\"2020-09-11T17:27:59+00:00\",\"dateModified\":\"2020-09-11T17:50:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/\"},\"wordCount\":437,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\\\/optimized\\\/2X\\\/e\\\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\",\"keywords\":[\"install wordpress\",\"ubuntu wordpress\"],\"articleSection\":[\"wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/\",\"name\":\"How to install wordpress on ubuntu apache server - WordPress Support\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\\\/optimized\\\/2X\\\/e\\\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\",\"datePublished\":\"2020-09-11T17:27:59+00:00\",\"dateModified\":\"2020-09-11T17:50:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\\\/optimized\\\/2X\\\/e\\\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\",\"contentUrl\":\"https:\\\/\\\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\\\/optimized\\\/2X\\\/e\\\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/how-to-install-wordpress-on-ubuntu-apache-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install wordpress on ubuntu apache server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#website\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/\",\"name\":\"WordPress Support\",\"description\":\"Wordpress Repair, migration, speed optimization\",\"publisher\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#organization\",\"name\":\"WordPress Support\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/05\\\/cropped-logo-9674824.png\",\"contentUrl\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/05\\\/cropped-logo-9674824.png\",\"width\":274,\"height\":55,\"caption\":\"WordPress Support\"},\"image\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/getwpsupport\\\/\",\"https:\\\/\\\/x.com\\\/ruhul24\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\",\"name\":\"ShaplaKanon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"caption\":\"ShaplaKanon\"},\"sameAs\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\"],\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wpsupport\\\/author\\\/sabahat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install wordpress on ubuntu apache server - WordPress Support","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:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/","og_locale":"en_US","og_type":"article","og_title":"How to install wordpress on ubuntu apache server - WordPress Support","og_description":"WordPress is the most popular open source blogging system and CMS on the Web. It is based on PHP and","og_url":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/","og_site_name":"WordPress Support","article_publisher":"https:\/\/facebook.com\/getwpsupport\/","article_published_time":"2020-09-11T17:27:59+00:00","article_modified_time":"2020-09-11T17:50:58+00:00","og_image":[{"url":"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png","type":"","width":"","height":""}],"author":"ShaplaKanon","twitter_card":"summary_large_image","twitter_creator":"@ruhul24","twitter_site":"@ruhul24","twitter_misc":{"Written by":"ShaplaKanon","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#article","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/"},"author":{"name":"ShaplaKanon","@id":"https:\/\/shaplakanon.com\/wpsupport\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825"},"headline":"How to install wordpress on ubuntu apache server","datePublished":"2020-09-11T17:27:59+00:00","dateModified":"2020-09-11T17:50:58+00:00","mainEntityOfPage":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/"},"wordCount":437,"commentCount":0,"publisher":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/#organization"},"image":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#primaryimage"},"thumbnailUrl":"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png","keywords":["install wordpress","ubuntu wordpress"],"articleSection":["wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/","url":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/","name":"How to install wordpress on ubuntu apache server - WordPress Support","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/#website"},"primaryImageOfPage":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#primaryimage"},"image":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#primaryimage"},"thumbnailUrl":"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png","datePublished":"2020-09-11T17:27:59+00:00","dateModified":"2020-09-11T17:50:58+00:00","breadcrumb":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#primaryimage","url":"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png","contentUrl":"https:\/\/ubuntucommunity.s3.dualstack.us-east-2.amazonaws.com\/optimized\/2X\/e\/ebe4d6066e0c32f14beca85ffd53e5915a4ab278_2_690x546.png"},{"@type":"BreadcrumbList","@id":"https:\/\/shaplakanon.com\/wpsupport\/how-to-install-wordpress-on-ubuntu-apache-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/shaplakanon.com\/wpsupport\/"},{"@type":"ListItem","position":2,"name":"How to install wordpress on ubuntu apache server"}]},{"@type":"WebSite","@id":"https:\/\/shaplakanon.com\/wpsupport\/#website","url":"https:\/\/shaplakanon.com\/wpsupport\/","name":"WordPress Support","description":"Wordpress Repair, migration, speed optimization","publisher":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/shaplakanon.com\/wpsupport\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/shaplakanon.com\/wpsupport\/#organization","name":"WordPress Support","url":"https:\/\/shaplakanon.com\/wpsupport\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/shaplakanon.com\/wpsupport\/#\/schema\/logo\/image\/","url":"https:\/\/shaplakanon.com\/wpsupport\/wp-content\/uploads\/sites\/2\/2022\/05\/cropped-logo-9674824.png","contentUrl":"https:\/\/shaplakanon.com\/wpsupport\/wp-content\/uploads\/sites\/2\/2022\/05\/cropped-logo-9674824.png","width":274,"height":55,"caption":"WordPress Support"},"image":{"@id":"https:\/\/shaplakanon.com\/wpsupport\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/getwpsupport\/","https:\/\/x.com\/ruhul24"]},{"@type":"Person","@id":"https:\/\/shaplakanon.com\/wpsupport\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825","name":"ShaplaKanon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","caption":"ShaplaKanon"},"sameAs":["https:\/\/shaplakanon.com\/wdc\/"],"url":"https:\/\/shaplakanon.com\/wpsupport\/author\/sabahat\/"}]}},"_links":{"self":[{"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/posts\/1302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/comments?post=1302"}],"version-history":[{"count":3,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/posts\/1302\/revisions"}],"predecessor-version":[{"id":1306,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/posts\/1302\/revisions\/1306"}],"wp:attachment":[{"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/media?parent=1302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/categories?post=1302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shaplakanon.com\/wpsupport\/wp-json\/wp\/v2\/tags?post=1302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}