Not Found – The requested URL /members/ was not found on this server.
-
I just did a fresh WordPress (v2.9.2) install in the root and added only the buddypress (v1.2.1) plugin.
After that i enabled permalinks and set the BuddyPress Default 1.2.1 theme and it’s working…
But only the home page (WP).
All the links on this page give an error like this:
Not Found!
The requested URL /members/admin/ was not found on this server.
and in my apache error log : File does not exist: /var/www/html/members
This only ‘member’ dir i have is “/wp-content/plugins/buddypress/bp-themes/bp-default/members”
I tried several permalinks updates and some custom .htaccess like:
_____
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
_____
and
_____
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
______
But this doesn’t solve the problem.
Anyone has an idea how to fix this?
- The topic ‘Not Found – The requested URL /members/ was not found on this server.’ is closed to new replies.