We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 33657
    • 128 Posts
    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.

    This question has been answered by zurie. See the first response.

    • discuss.answer
      • 33657
      • 128 Posts
      think i fixed it. just had to harden the docs folder so the changelog wouldn't display like the core message was explaining.