diff options
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 55c32d3..0000000 --- a/.htaccess +++ /dev/null @@ -1,48 +0,0 @@ -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# Apache configuration [Thomas Lange <code@nerdmind.de>] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# This file contains the configuration rules for the Apache HTTP server. It is # -# recommended to include these rules directly into the Apache configuration! # -# # -# Additionally, it's recommended to ensure that the AllowOverride directive is # -# disabled if these rules are included in the Apache configuration. Otherwise, # -# the Apache HTTP server is checking for .htaccess files on every request. # -# # -# AllowOverride None # -# # -# NOTICE: If you decide to include these rules directly into the Apache config # -# and want to set AllowOverride to something other than "None", it might cause # -# trouble with this .htaccess file which might contain rules that are not per- # -# mitted by your custom AllowOverride setting in the server config. You should # -# rename (or delete) this file to prevent Apache from parsing it in that case! # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -#=============================================================================== -# Error pages -#=============================================================================== -ErrorDocument 403 /403.php -ErrorDocument 404 /404.php - -#=============================================================================== -# Enable RewriteEngine -#=============================================================================== -RewriteEngine On - -#=============================================================================== -# Forbidden directories -#=============================================================================== -RewriteRule ^(.git|core|theme/([^/]+)/(html|lang))/ - [F] - -#=============================================================================== -# Pass requests to index.php -#=============================================================================== -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule . index.php [L] - -#=============================================================================== -# Redirect from old to new global static dir -#=============================================================================== -#Redirect 301 /rsrc/ /static/ |