Error 500 - No Access
Using Jamroom
Does the .htaccess file look ok?
# Jamroom 5 Apache .htaccess file
DirectoryIndex index.html index.php sitemap.xml modules/jrCore/router.php
Options +FollowSymLinks
Options -MultiViews -Indexes
# Use ETags
Header unset ETag
FileETag None
# Expires for CSS, JS and Images
Header set Expires "Thu, 15 Apr 2018 20:00:00 GMT"
# Compress everything we can
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript text/javascript-x application/javascript
# All requests through the router
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]