Hi @megano
I have launched a fresh new instance of WordPress single tier, followed the guide to convert it to multisite to replicate your user case scenario. First things first, mention that the guide you followed already makes your installation to use subdirectories by default, so you don't need to follow the aforementioned guide for Bitnami WordPress Multisite
.
I could not face any issues. I have been checking your configuration and it seems that there are some missing changes from the guide that you should have:
$ cat /opt/bitnami/apps/wordpress/conf/htaccess.conf
+<Directory "/opt/bitnami/apps/wordpress/htdocs">
+ RewriteEngine On
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+ RewriteBase /
+ 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]
+</Directory>
<Directory>
# Only allow direct access to specific Web-available files.
# Apache 2.2
<IfModule !mod_authz_core.c>
Order Deny,Allow
Deny from all
</IfModule>
...
Reference: https://community.bitnami.com/t/how-can-i-enable-wordpress-multisite/47708/2?u=jcarmona
Could you please try to add that, restart apache and report back?
PS: You can restart apache by using
$ sudo /opt/bitnami/ctlscript.sh restart apache
Best regards,
Jose Antonio Carmona
Was my answer helpful? Click on 