March 05, 2016

Mengaktifkan file .htacess di ubuntu 14.04

Ketika pertama kali mengintall webserver Apache2 versi ubuntu 14.04, anda akan mendapati lokasi document root (htdocs) berada pada direktory /var/www/html/.

Untuk mengubahnya di direktori home ikuti langkah-langkah sbb:

ubah file: etc/apache2/sites-available/000-default.conf

cari  

    ServerAdmin webmaster@localhost
    #DocumentRoot /var/www/html

Lalu ubah menjadi

    DocumentRoot /home/nama-user/www

Kemudian
ubah file:
    sudo gedit /etc/apache2/apache2.conf

<Directory /home/nama-user/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
Allow from All 
</Directory>
Lalu restart apache 2 anda :

sudo /etc/init.d/apache2 restart
 
Untuk mengaktifkan file .htaccess maka ketikkan perintah :
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
 
Selesai semoga bermanfaat...............