I'm running Drupal and Wordpress installs on my server. I can get url rewriting to work with .htaccess for my Drupal installs but not my Wordpress installs.
I believe I have my virtual hosts file set up properly, but what am I missing?
<VirtualHost *:80>
ServerAdmin
webmaster@example.com ServerName mhb.501clients3.com
ServerAlias
http://www.mhb.501clients3.com ServerAlias mhb.501clients3.com
DocumentRoot /srv/www/501clients3.com/clients3_new/mhb
ErrorLog /srv/www/501clients3.com/logs/error.log
CustomLog /srv/www/501clients3.com/logs/access.log combined
<Directory /srv/www/501clients3.com/clients3_new/mhb>
# This relaxes Apache security settings.
AllowOverride all
Options FollowSymLinks
# MultiViews must be turned off.
Options -MultiViews
</Directory>
</VirtualHost>