-
Permasalahan Permalink wordpress apache2 ubuntu server virtualmin
Permalink Problem Jika anda menggunakan WordPress, yang dimasukan kedalam Ubuntu Server, Virtualmin Web Hosting, dan Apache2 Mungkin ini solusi jika terjadi masalah di Permalink : Inside of this file, we want to change all things. sudo nano /etc/apache2/sites-available/000-default.conf 000-default.conf – should look something like this: <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html <Directory /var/www/html/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> When you are finished, save and close the file. Next, we need to enable the rewrite module, which allows you to modify URLs. You can do this by typing: sudo a2enmod rewrite After you have made these changes, restart Apache: sudo service…