Edjet LMS Server

Install and configure Apache

To install Apache 2.4 web server:
sudo apt-get install apache2

Enable mod_rewrite:
sudo a2enmod rewrite
sudo service apache2 restart

Enable the use of .htaccess for app directory /var/www/html
sudo vim /etc/apache2/sites-available/000-default.conf

Add the directive „AllowOverride All“:
<Directory /var/www/html/>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>

Related