How do I solve the permalink error 404 on wordpress buddypress pages
Hello buddies
I have installed a wordpress installation from market.
Loggedin admin dashboard an wanted to set up (new installation) here on linode.
A theme with buddypress.
So now the problem, that the buddypress links or permalinks all not working
my page:
https://netzwerk-helden.com/members/netzwerk-held/
https://netzwerk-helden.com/groups
https://netzwerk-helden.com/members/netzwerk-held/settings
Settings in wordpress permalink to postname is set and saved (several times)
my .htaccess file
BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
END WordPress
I dont know how to get this working. Tried differnt settings changing. New installation.
So hope anybody is knowing to to solve that problem
Thanks
warm regards
Michael
1 Reply
This is not the answer you want to hear but installing WP from the Linode Marketplace can lead to all sorts of issues.
Try this in .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /shop/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>