aboutsummaryrefslogtreecommitdiffstats
path: root/.htaccess
blob: e337ddef2e296e7ee08fd00671a782364320da56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# 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                                                           #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#

#===============================================================================
# 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]