Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!

Merry Christmas and Happy Holidays! 🎄

[Solved] Forum links not working

7 Posts
4 Users
0 Reactions
2,807 Views
Posts: 1
(@vanismart)
New Member
Joined: 3 years ago

What is the solution of these problems? Any One Know Pls Tell us  


Posts: 4
Topic starter
(@flexbuilds)
Active Member
Joined: 3 years ago

I fixed it. I read an article and I had to change this:

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

 to

<Directory /var/www/>
	Options Indexes FollowSymLinks
	AllowOverride All
	Require all granted
</Directory>

in my apache2.conf file on my server.

as well as change my .htaccess to this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

I also changed my permalinks to /%postname%/. This also fixed my link issues. Thanks guys!


Page 2 / 2