• This installation began as a Bitnami AMI.
    After install, I configured multisite and got that working, following all of the instructions I found online.
    Next step is to install buddypress, but I need to have “pretty” permalinks in order to do that.
    When I change the WordPress permalink setting I get 404 on all my pages.
    This is what I have in the htaccess file:

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule . index.php [L]

    and here is the httpd.conf:

    [Code moderated as per the Forum Rules. Please use the pastebin]

Viewing 3 replies - 16 through 18 (of 18 total)
  • Since its a multisite installation, there are already some lines in the .htaccess file according to the n/w configuration settings.

    Should we add these lines after that or before? The contents are mentioned in the first post of this thread.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Before.

    It should go

    # Fixes
    Options +FollowSymlinks
    
    # BEGIN WordPress
    [Whatever yours is]
    # END WordPress

    kediacorp, Ipstenu you’re my heroes!!! Thank you ??

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Multisite installed on AWS – Permalinks not working’ is closed to new replies.