Probably an .htaccess error. My guess is a typo. Backup your .htaccess file and remove it, then try accessing the url that generates 500 error. You should get a 404 error now instead.
Thread Starter
Jazz
(@jsmakkar)
Thanks for replying
Renamed .htaccess
mydomain.com/site1 remains same ie opens but without styles
mydomain.com/site1/wp-adming generates following message
“This page isn’t working
mydomain.com redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS”
Yup, its a syntax error in your .htaccess file. You must have an error in your copy and paste. You can post your .htaccess here. Or you can carefully go through it line by line.
Thread Starter
Jazz
(@jsmakkar)
# BEGIN WordPress
RewriteEngine On
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).*) ourbusiness/$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ ourbusiness/$2 [L]
RewriteRule . index.php [L]
# END WordPress
Thread Starter
Jazz
(@jsmakkar)
You were right – not sure where the folder name came from. I removed the words “ourbusiness” from above code and it worked.
Thank you so much for being here to guide me.
-
This reply was modified 5 years, 11 months ago by
Jazz.
I was going to say your .htaccess is non-standard. You should get the .htaccess from your network menu, the url looks something like this – http://domain.com/wp-admin/network/setup.php
I copy and paste the .htaccess and wp-config.php contents from there.
I’m glad you figured it out =)
Thread Starter
Jazz
(@jsmakkar)
Thanks again my friend!!!