[Solved] Wordpress Permalink settings set to 'Post Name' breaks the page.
Solution: Edit the Apache file below
#vim /etc/apache2/apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Change to :
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
Comments
Post a Comment