Academic Member Aug 6, 2019 #1 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?
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?
Academic Member Sep 29, 2019 #3 Kerstin28 said: AllowOverride might be not set. Click to expand... 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>
Kerstin28 said: AllowOverride might be not set. Click to expand... 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>
J Justauser Member Dec 12, 2019 #4 Academic said: 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> Click to expand... i tried that but it didnt work for me. anything else i can try? Forbidden You don't have permission to access this resource.
Academic said: 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> Click to expand... i tried that but it didnt work for me. anything else i can try? Forbidden You don't have permission to access this resource.