Creating new site gets me an 500 internal server error
-
My goal was to integrate my blogs into the main domain using subdirectories like mydomain.com/blog1 or mydomain.com/blog2.
I followed the instructions as described by WP and so far all worked fine until I wanted to create a new site. Everytime I created a new site, i get an internal server err. By refreshing the admin panel, the site then appears.
Now if i try to visit the new site, i get linked to https://mydomain.com/wp-admin/ms-sites.php I have this feeling that some Permalinks are not correct but it could be anything else. I just have no idea.Would be great if you could give me a hint what went wrong. Thanks
Here’s my htaccess file:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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]
- The topic ‘Creating new site gets me an 500 internal server error’ is closed to new replies.