It depends on how you actually got the site and server set up. If the site as running as a VHost then it's best to put it in the VHost directive (check /etc/apache2/sites-enabled).
If you have problems finding that then you can just add it to the base /etc/apahce2/apache2.conf file:
<Directory /path/to/drupal/installation> AllowOverride all </Directory>
Just remember to restart apache after you do the changes so they kick in.
Jamie Holly http://www.intoxination.net http://www.hollyit.net
On 1/12/2010 1:20 PM, Martin Hooper wrote:
On Tue, Jan 12, 2010 at 6:03 PM, Jamie Hollyhovercrafter@earthlink.net wrote:
Make sure you have AllowOverride set in Apache for the host/Vhost. For testing and dedicated servers I generally set it to all:
http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride
Its an Ubuntu server - Which configuration file should I add it to..?