One or more configuration details didn't check out OK:
Core folder is accessible by web
in my .htaccess on my www root I have
# The Friendly URLs part
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
this obviously makes www.mysite.com/core redirect to index.php which makes the config think that its exposed..
I tried doing
#RewriteRule ^(?!core/)(.*)$ index.php?q=$1 [L,QSA]
and it still shows the error. Do you know of a way to work around this issue?
I am redirecting all URLS to index.php because I am doing a single page website (angularJS) and using modx as the CMS for angular but not using modx built in router.