May 23rd, 2006
I’m trying out the Zend Framework using the Apache and PHP Ubuntu packages, however have come across some issues regarding the default way Ubuntu configures them:
- mod_rewrite not enabled by default. There’s some information regarding that in this blog entry, basically you just need to execute the following command to enable the module:
sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
- Next if you want to use .htaccess files, as detailed in the Zend Manual then you have to edit the virtual host Apache config file (/etc/apache2/sites-available/default), specifically change the Allowoverride bits to:
Or as required.