• I installed WordPress Multisite using Bitnami on my laptop (localhost). I’ve gone through the process of updating the code in the wp-config file and the .htaccess file, but I still cannot access the dashboard for the new sites that I’ve created and the visit page link shows me an unformatted version of the site.

    When I click on dashboard the browser returns an error that says “The page isn’t redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies”

    I’ve reviewed the codex and installation instructions from bitnam. I’ve installed and reinstalled wordpress multiple times and followed the instructions in posts from several other related topics in the forum, but I have not been able to resolve the issue.

    Here is the code I currently have in the htaccessfile:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [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).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    
    # END WordPress

    Does anyone out there have an idea about what can be holding me up? I’m not sure what else to do and trying to set up more than one individual site on a localhost has also be a little confusing.

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Dashboards and Themes Are Not Working for New Sites using WordPress Multisite’ is closed to new replies.