GlavinCMS/glav.in/master/.htaccess
<IfModule mod_rewrite.c>
SetEnv HTTP_MOD_REWRITE On
Options +FollowSymlinks
RewriteEngine on
# Re-route everything execpt for images and the admin directory
RewriteCond %{REQUEST_URI} !(.png|.jpg|.gif|.jpeg|.bmp)$
RewriteCond %{REQUEST_URI} !(install.php)$
RewriteCond %{REQUEST_URI} !/admin/
RewriteCond %{REQUEST_URI} !/template/
RewriteCond %{REQUEST_URI} !/system/
RewriteCond %{REQUEST_URI} !/data/
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]
</IfModule>
On Github License
Files
Download PDF of Htaccess file