Apache

From belajarwiki
Jump to navigation Jump to search

Setting htaccess

Edit file

sudo vi /etc/apache2/apache2.conf 

Ubah

<Directory /var/www/>
 Options Indexes FollowSymLinks
 AllowOverride None 
 Require all granted
</Directory>

Menjadi

<Directory /var/www/>
 Options Indexes FollowSymLinks
 AllowOverride All 
 Require all granted
</Directory>

Enabled apache mod rewrite

sudo a2enmod rewrite

Restart apache

systemctl restart apache2


Pranala Menarik

Apache dan MySQL