Friendly URLs do not work - Apache/2.4.29, mod_rewrite enabled

Academic

Member
Hi!

I am hosting some XenForo 2.1 sites on a digitalocean droplet, Ubuntu. I have .htaccess file in place, Apache/2.4.29, mod_rewrite enabled. If I enable Friendly URLs, it returns error. Any clue what can be the cause?
Screenshot at Aug 06 14-22-20.webp
 
AllowOverride might be not set.

It worked. Thanks! I changed the following in /etc/apache2/apache2.conf

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

To following:

Code:
<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
 
It worked. Thanks! I changed the following in /etc/apache2/apache2.conf

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

To following:

Code:
<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
i tried that but it didnt work for me. anything else i can try?

Forbidden
You don't have permission to access this resource.
 
Top Bottom