Re: Not found Members directory
Codyb and John James Jacoby
I read through https://buddypress.org/forums/topic.php?id=2664&replies=19#post-14700 and noticed something…
The first two lines in my .htaccess file is different to that explained in the post. Also, the “RewriteBase /” is missing the “wp/” at the end. I’m hesitant to delete the file like Codyb did unless you guys think it’s OK to do.
My .htaccess reads:
AddType application/x-httpd-php5 .php
AddHandler application/x-httpd-php5 .php
RewriteEngine On
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>