Mengatasi permalink wordpress tidak berkerja di Apache2 Ubuntu
Berikut adalah langkah-langkah untuk mengatasi permalink wordpress tidak berkerja di Apache2 Ubuntu:
- Silahkan login ke root server anda
- pastikan bahwa file .htaccess telah di buat di dalam directory /var/www/html
- ubah owner permission file .htaccess ke www-data dengan perintah:
chown www-data:www-data .htaccess
- ubah permission file ke 644 dengan perintah:
chmod 644 .htaccess
- Aktifkan module mod_write di apache2 dengan perintah:
sudo a2enmod rewrite systemctl restart apache2
- ubah AllowOverride di apache2 ke All
nano /etc/apache2/apache2.conf
Cari <Directory /var/www/> dan ubah:
Options Indexes FollowSymLinks AllowOverride All Require all granted
Restart Apache2 anda kembali
systemctl restart apache2