Showing posts with label Apache. Show all posts
Showing posts with label Apache. Show all posts

Saturday, November 17, 2018

Rewrite URLs or Enable with mod_rewrite for Apache2 on Ubuntu 16.04

In this POST I will show how to enable mod_rewrite for apache2

First, we need to install  Apache2, Before that Update Ubuntu with below command.

sudo apt-get update

Install Apache

sudo apt-get install apache2

Now activate mod_rewrite using below command

Saturday, June 10, 2017

How To Install WordPress, Apache, MySQL and PHP on Ubuntu 16.04

In this post I will show, how to install WordPress, Apache, MySQL and PHP on Ubuntu 16.04.

Install Apache:

When you’re done installing Apache2, the below commands allow you to start it up

sudo apt-get update
sudo apt-get install apache2

sudo systemctl start apache2
         OR
sudo service apache2 start