Dear Sir,
I go to settings-multi domains have
Internal Server Error,I check the error log, Request exceeded the limit of 10 internal redirects due to probable configuration error.
I made some change to .htaccess,but still have error.
I add 2 line:
{ENV:REDIRECT_STATUS} 100
RewriteRule .* – [L]
Please let me know how to change it.
Thanks!
The server encountered an internal error or misconfiguration and was unable to complete your request.
http://domain.com/wp-admin/network/settings.php?page=multi-domains
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{ENV:REDIRECT_STATUS} 100
RewriteRule .* – [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*.php)$ $1 [L]
RewriteRule . index.php [L]
# BEGIN wtwp_cache
# END wtwp_cache
# BEGIN wtwp_security
# END wtwp_security