How can I fix a Virtual Multiblog install that has no errors, but won’t show all my sites?

I’ve been using Stephen Rider’s Virtual Multiblog system for WordPress for a while now, and recently, I decided to add one more blog to my existing batch of three. The difference was, while all my other blogs existed as subdomains, this time I wanted WordPress for my main domain. Somehow, this broke all my other … Read more

Rewrite-Rules not working on a vhost, everything goes to index.php

after setting up the wordpress htaccess rules in my vhost, i was unable to enter the wp-admin area. I was always redirected to the frontpage of my wordpress instance. The rewriting itself worked on the mainpage. All links worked so far, but the admin area remains without any access. Rewrite rules used: RewriteEngine On RewriteBase … Read more

Multisite without .htaccess

Do I need to use .htaccess file for a multisite? I have setup basic wordpress site and configured it with apache2 VirtualHost as: <VirtualHost *:80> … RewriteEngine On Options FollowSymLinks # THIS REDIRECTS TO HTTPS RewriteCond %{SERVER_NAME} =example.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] DocumentRoot /var/www/example/ <Directory /var/www/example/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow … Read more

WordPress Multisite – Multiple subfolders for blogs

I created a network in blog.animals.com, the network is running fine. I can set up blogs like blog.animals.com/chimpanse. This is also working. I like to have multiple (2) subdirectories for each blog, e.g. blog.animals.com/apes/chimpanse blog.animals.com/cats/birma On an address like blog.animals.com/apes should be nothing, it should redirect to blog.animals.com/apes/chimpanse and so on. I tried to achieve … Read more