In my attempt to get my Drupal alias links to work I have narrowed it down to the fact that the mod_rewrite module is not installed. I uncommented the LoadModule rewrite_module libexec/apache2/mod_rewrite.so as well as LoadModule php5_module libexec/apache2/libphp5.so. I have also changed AllowOverride None to AllowOverride All in every instance it appears in the httpd.conf file. I then restarted apache and I still cannot run this command: sudo a2enmod rewrite. Everytime I run it I get command not found error. What am I doing wrong, my username.conf also has the code listed below.
<Directory "/Users/username/Sites/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Any help would very appreciated.
Tyler