-
Notifications
You must be signed in to change notification settings - Fork 0
/
.htaccess
53 lines (52 loc) · 2.23 KB
/
.htaccess
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
##
# @package MiMFa
# @copyright Copyright (C) 2005 - 2023 Open Source Matters. All rights reserved.
# @license GNU General Public License version 2 or later; see LICENSE.txt
##
#
#Alternate default index pages
DirectoryIndex index.php index.htm index.html static.php
# No directory listings
IndexIgnore *
# Can be commented out if it causes errors, see notes above.
Options +FollowSymlinks
Options -Indexes
# Mod_rewrite in use.
RewriteEngine on
#RewriteBase /
#
## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on MiMFa!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root home page
RewriteRule .* /index.php [F]
## End - Rewrite rules to block out some common exploits.
#
## Begin - MiMFa! core SEF Section.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# If the requested path and file are not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the requested path and file don't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file don't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# Redirect all virtual paths to the main index.php
RewriteRule ^ /index.php [L]
## End - MiMFa! core SEF Section.
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php81” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php81 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit