Skip to content
When GNUBOARD short URLs do not work

When GNUBOARD short URLs do not work

June 22, 2019

Note

This post may be partially machine- or AI-translated. If there is any discrepancy, the Korean version takes precedence.

Note

This post might be outdated and some links might not be available.

After enabling “Use short URLs” in GNUBOARD, I ran into 404 errors.
The problem was that AllowOverride was not configured for the GNUBOARD directory.


This example assumes GNUBOARD is installed at /var/www/html/community/.

I created gnuboard.conf under /etc/apache2/sites-enabled/.
The file contains:

<Directory /var/www/html/community/>
    AllowOverride All
</Directory>

Restart the Apache2 service.

$ sudo service apache2 restart
Last updated on