Sunday, February 5, 2012

XAMPP on OSX, WordPress and Permalinks

Finally I got Permalinks in Wordpress to work on my Wordpress install on local. Whew! Thanks to this post.

For me the answer was:

Make sure mod_rewrite is installed. Using <?php phpinfo(); ?> is a good way to find out, but you probably just need to comment it out in one of the Apache config files.

Then for your directory of interest you have to use something like this:

<Directory "/www">
Options Indexes FollowSymLinks ExecCGI Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>



No comments: