GR8DAN/markdown-CMS/master/.htaccess - Htaccess File

GR8DAN/markdown-CMS/master/.htaccess

# markdown cms URL Rewrite Rules
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ md/index.php [L]

# Index request
RewriteRule ^$ md/index.php [L]

#markdown file request
RewriteRule .md$ md/index.php [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache