Allowing Clean URLs in Drupal
So… I had this nice fresh Drupal in my new PostgreSQL installed Apache.
Clean URLs were disabled by default and couldn’t be enabled.
To enable them, I first upgraded to the latest Drupal and made sure to copy the .htaccess file that PostgreSQL forgot in insert.
Then, in the that specified the …/www directory, I changed AllowOverride to All from None and clean URLS were magically allowed.
Between the .htaccess specifically adding rewrite rules and httpd.conf allowing them, we’re all set.
Yay.