mod_rewrite on Mac OSX Apache 2
Permalink
My local install works great with the exception of getting pretty urls. ( OSX 10.5 / PHP 5.25 / Apache 2.2) If I add the rewrite rules to the config file my local webserver won't even start.....any ideas are appreciated.
/private/var/log/apache2/error_log
I was getting 403 errors, and for me, the solution was adding the FollowSymLinks and AuthConfig to my user.conf file...
<Directory "/Volumes/User Data/macuser/Sites/">
Options FollowSymLinks Indexes MultiViews
AllowOverride All AuthConfig
Order allow,deny
Allow from all
</Directory>
-Steve