# # GetSimple CMS htaccess ROOT file # apache 2.4 # # The following require certain allow overrides, if getting 500 error comment them out one by one # can be resolved in apache httpd.conf to ensure security alternatives # override charset AddDefaultCharset UTF-8 # prevent directory listings Options -Indexes # Follow symbolink links, This is required for rewrites on some hosts Options +FollowSymLinks # Set the default handler. DirectoryIndex index.php # blocks direct access to the XML files - they hold all the data! Deny from all Deny from all Require all denied Allow from all Allow from all Require all granted # handle rewrites for fancy urls RewriteEngine on # Usually RewriteBase is just '/', but # replace it with your subdirectory path RewriteBase /GetSimpleThemes/lcars/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]