Skip to:
Content
Pages
Categories
Search
Top
Bottom

Permalinks not working with Buddypress

  • Avatar of Rahul Sonar
    Rahul Sonar
    Participant

    @rahulsonar

    When I use custom permalinks, the blog link on home page does not work. If I use any other permalink suggested by wordpress, it works.

    any idea? I am using %category%/%postname%/

    site is our-engagement.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Avatar of Rohan Kapoor
    Rohan Kapoor
    Participant

    @rohan_kapoor

    I had a similar problem accept none of the permalinks were working. Post your .htaccess file.

    Avatar of Jeff Sayre
    Jeff Sayre
    Participant

    @jeffsayre

    Read this (especially the section on %category%): http://codex.wordpress.org/Using_Permalinks#Using_only_.25postname.25

    Avatar of tjtate
    tjtate
    Participant

    @tjtate

    i had a similar issue, this is how i fixed it.

    htaccess on root directory:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    permalink structure:

    /index.php/%postname%/

    then i had to make sure that apache has the mod_rewrite module enabled.

    running wordpress 2.9.2, apache 2.2.11 and php 5

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

You must be logged in to reply to this topic.