Sunday, September 1, 2019

how i solved the problem of .htaccess not working properly

here is solution for ubuntu and apache

First enable module rewrite:

sudo a2enmod rewrite 


And restart apache

sudo systemctl restart apache2

Now edit for directory level

sudo vim /etc/apache2/sites-enabled/000-default.conf

add these lines at end


    AllowOverride All


and restart apache again.

sudo service apache2 restart