Hi. In my case solution was updating apache2.conf in section var/www. I had to change AllowOverride denied
to AllowOverride FileInfo
.
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride FileInfo
Require all granted
</Directory>
After this update, I ve updated my permalinks. I do not know why, but as a default option, I had domain.name/index.php/%postname%/.
I’ve changed it to domain.name/%postname%/.
Now the plugin exports as it should.
Thank you.