Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] Forum links not working

7 Posts
4 Users
0 Reactions
2,313 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