
To uninstall an appache module run these commands from your terminal:
# a2dismod <module_name>
if the module was previously enabled, remove the .conf and .load files from ‘/etc/apache2/mod-available/’.
e.g
# sudo rm /etc/apache2/mods-available/<module_name.conf> # sudo rm /etc/apache2/mods-available/<module_name.load>
Then restart apache:
# sudo service apache2 restart
Leave a Reply