Skip to:
Content
Pages
Categories
Search
Top
Bottom

Buddypress Link don’t work


  • staipa
    Participant

    @staipa

    Hi! I have sompe problems.
    In “Member page” if i click on a member I get redirected on homepage. The same thing with menu of buddypress: if i click on “messages”, “friends” or similar menu I get redirected in home page.
    Can you help me, please?
    My site is http://www.scheggedicristallo.com

    I think that maybe a problem in .htacess.

    My actual .htaccess is

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]

    deny from all

    order deny,allow

    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(.*.php)$ $1 [L]
    RewriteRule . index.php [L]
    # BEGIN W3TC Browser Cache

    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4.0[678] no-gzip
    BrowserMatch bMSIE !no-gzip !gzip-only-text/html
    BrowserMatch bMSI[E] !no-gzip !gzip-only-text/html

    Header append Vary User-Agent env=!dont-vary

    AddOutputFilterByType DEFLATE text/css application/x-javascript text/x-component text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon

    FileETag None

    Header set X-Powered-By “W3 Total Cache/0.9.2.4”

    FileETag None

    Header set X-Powered-By “W3 Total Cache/0.9.2.4”

    FileETag None

    Header set X-Powered-By “W3 Total Cache/0.9.2.4”

    # END W3TC Browser Cache
    # BEGIN W3TC Page Cache core

    RewriteEngine On
    RewriteBase /
    RewriteRule ^(.*/)?w3tc_rewrite_test$ $1?w3tc_rewrite_test=1 [L]
    RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-.]+.[a-z]+).?(:[0-9]+)?$
    RewriteRule .* – [E=W3TC_DOMAIN:%2]
    RewriteCond %{REQUEST_URI} ^/(stefanogiolo|ameliapiscolla|martinatomasso|albertomolinaroli|chiaraperlini|sharonmissaglia|darklady|veracaiazza|jelkaserpieri|fabioscolari|veronicafratter|ninooriolo|melissabiancon|valentina|vincent|ninetta|claudia|giuseppepecoraro|annamariacuccu|valentinagestri|emisiarte|arturoavossa|simonabaralla|giancarloguidi|globals|lauraruggiero|chiararossini|pamelacozza|beatricecinollo|silviaenriconi|marcoschembri|dimitryrufolo|pattysimon|albadragoni|giulianourbano|nicolaspecchierla|giovannasgorbani|francescapellegrino|marcosposato)/
    RewriteRule .* – [E=W3TC_BLOGNAME:%1.]
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteRule .* – [E=W3TC_ENC:_gzip]
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} =””
    RewriteCond %{HTTP_HOST} =lnx.scheggedicristallo.com
    RewriteCond %{REQUEST_URI} /$ [OR]
    RewriteCond %{REQUEST_URI} (sitemap(_index)?.xml(.gz)?|[a-z0-9_-]+-sitemap([0-9]+)?.xml(.gz)?) [NC]
    RewriteCond %{REQUEST_URI} !(/wp-admin/|/xmlrpc.php|/wp-(app|cron|login|register|mail).php|/feed/|wp-.*.php|index.php) [NC,OR]
    RewriteCond %{REQUEST_URI} (wp-comments-popup.php|wp-links-opml.php|wp-locations.php) [NC]
    RewriteCond %{HTTP_COOKIE} !(comment_author|wp-postpass|wordpress_[a-f0-9]+|wordpress_logged_in) [NC]
    RewriteCond %{HTTP_USER_AGENT} !(W3 Total Cache/0.9.2.4) [NC]
    RewriteCond “%{DOCUMENT_ROOT}/wp-content/w3tc-%{ENV:W3TC_BLOGNAME}%{ENV:W3TC_DOMAIN}/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}” -f
    RewriteRule .* “/wp-content/w3tc-%{ENV:W3TC_BLOGNAME}%{ENV:W3TC_DOMAIN}/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}” [L]

    # END W3TC Page Cache core

Viewing 4 replies - 1 through 4 (of 4 total)

  • r-a-y
    Keymaster

    @r-a-y

    Can you try disabling W3 Total Cache to see if that solves your issue?


    staipa
    Participant

    @staipa

    It not resolve my problem. My .htaccess now is

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]

    deny from all

    order deny,allow

    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(.*.php)$ $1 [L]
    RewriteRule . index.php [L]


    staipa
    Participant

    @staipa

    IAt this point, however, I’m not sure that the problem is not linked to .htaccess…


    staipa
    Participant

    @staipa

    PROBLEM SOLVED!
    The problem is “404 Redirection” plugin. Disabling this plugin now Buddypress work fine.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Buddypress Link don’t work’ is closed to new replies.
Skip to toolbar