diff options
Diffstat (limited to 'default.htaccess')
-rw-r--r-- | default.htaccess | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/default.htaccess b/default.htaccess new file mode 100644 index 0000000..2a726ce --- /dev/null +++ b/default.htaccess @@ -0,0 +1,11 @@ +RedirectMatch 403 ^.*/files/ +ErrorDocument 403 +Options -Indexes + +RewriteEngine on +# RewriteBase /fracturedcms +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond $1#%{REQUEST_URI} ([^#]*)#(.*)\1$ +RewriteRule ^([^\.]+)$ %2?page=$1 [QSA,L] + |