Apache & WordPress Permalinks

So configuring Apache on Debian turns out to be a dream – Why can’t every distribution be this easy?

Configuring PermaLinks in WordPress requires you to set ‘AllowOverride’ to: ‘All’ which was just a simple case of –

nano /etc/apache2/apache2.conf

Change this:

<Directory /var/www/>
 Options Indexes FollowSymLinks
 AllowOverride None
 Require all granted
</Directory>

To this:

<Directory /var/www/>
 Options Indexes FollowSymLinks
 AllowOverride All
 Require all granted
</Directory>

Posted

in

by

Tags:

Comments

One response to “Apache & WordPress Permalinks”

  1. Roger avatar

    Really awesome tip

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.