apache

Permalink not found in Ubuntu wordpress

1. First open the apache config file sudo gedit /etc/apache2/apache2.conf 2. Change AllowOverride from value ‘none’ to ‘All’ as given below <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> 3. Activate mod_rewrite sudo a2enmod rewrite 4. Restart the apache server to put this changes to effect. sudo service apache2 restart

Local LAMP Setup In Ubuntu

To install (Apache, PHP, MariaDB, PHPMyAdmin), please open your terminal and follow the below simple steps: First, install apache2 package:sudo apt install apache2 Enable apache service sudo systemctl stop apache2.service sudo systemctl start apache2.service sudo systemctl enable apache2.service Install mariadb server and client sudo apt-get install mariadb-server mariadb-client Enable mariadb server sudo systemctl stop mariadb.service …

Local LAMP Setup In Ubuntu Read More »