Skip to content

Commit cc6971b

Browse files
author
Emal Nawabi
committed
first commit
0 parents  commit cc6971b

File tree

6,940 files changed

+2495221
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,940 files changed

+2495221
-0
lines changed

.htaccess

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# BEGIN LSCACHE
2+
## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ##
3+
<IfModule LiteSpeed>
4+
RewriteEngine on
5+
CacheLookup on
6+
RewriteRule .* - [E=Cache-Control:no-autoflush]
7+
RewriteRule \.object-cache\.ini - [F,L]
8+
9+
### marker CACHE RESOURCE start ###
10+
RewriteRule wp-content/.*/[^/]*(responsive|css|js|dynamic|loader|fonts)\.php - [E=cache-control:max-age=3600]
11+
### marker CACHE RESOURCE end ###
12+
13+
### marker FAVICON start ###
14+
RewriteRule favicon\.ico$ - [E=cache-control:max-age=86400]
15+
### marker FAVICON end ###
16+
17+
### marker DROPQS start ###
18+
CacheKeyModify -qs:fbclid
19+
CacheKeyModify -qs:gclid
20+
CacheKeyModify -qs:utm*
21+
CacheKeyModify -qs:_ga
22+
### marker DROPQS end ###
23+
24+
</IfModule>
25+
## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ##
26+
# END LSCACHE
27+
# BEGIN NON_LSCACHE
28+
## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ##
29+
## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ##
30+
# END NON_LSCACHE
31+
32+
# BEGIN WordPress
33+
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
34+
# dynamically generated, and should only be modified via WordPress filters.
35+
# Any changes to the directives between these markers will be overwritten.
36+
<IfModule mod_rewrite.c>
37+
RewriteEngine On
38+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
39+
RewriteBase /
40+
RewriteRule ^index\.php$ - [L]
41+
RewriteCond %{REQUEST_FILENAME} !-f
42+
RewriteCond %{REQUEST_FILENAME} !-d
43+
RewriteRule . /index.php [L]
44+
</IfModule>
45+
46+
# END WordPress
47+
48+
RewriteEngine On
49+
RewriteCond %{HTTPS} off
50+
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
51+
52+
RewriteEngine On
53+
RewriteCond %{HTTPS} !on
54+
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
55+
56+
# BEGIN Security Block
57+
# Block the include-only files.
58+
<IfModule mod_rewrite.c>
59+
RewriteEngine On
60+
RewriteBase /
61+
RewriteRule ^wp-admin/includes/ - [F,L]
62+
RewriteRule !^wp-includes/ - [S=3]
63+
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
64+
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
65+
RewriteRule ^wp-includes/theme-compat/ - [F,L]
66+
</IfModule>
67+
68+
# Disable directory listing
69+
Options All -Indexes
70+
71+
# Remove header with PHP version
72+
Header always unset X-Powered-By
73+
Header unset X-Powered-By
74+
# END Security Block

.htaccess.bk

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
# BEGIN WordPress
3+
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
4+
# dynamically generated, and should only be modified via WordPress filters.
5+
# Any changes to the directives between these markers will be overwritten.
6+
<IfModule mod_rewrite.c>
7+
RewriteEngine On
8+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
9+
RewriteBase /
10+
RewriteRule ^index\.php$ - [L]
11+
RewriteCond %{REQUEST_FILENAME} !-f
12+
RewriteCond %{REQUEST_FILENAME} !-d
13+
RewriteRule . /index.php [L]
14+
</IfModule>
15+
16+
# END WordPress
17+
18+
# BEGIN Security Block
19+
# Block the include-only files.
20+
<IfModule mod_rewrite.c>
21+
RewriteEngine On
22+
RewriteBase /
23+
RewriteRule ^wp-admin/includes/ - [F,L]
24+
RewriteRule !^wp-includes/ - [S=3]
25+
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
26+
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
27+
RewriteRule ^wp-includes/theme-compat/ - [F,L]
28+
</IfModule>
29+
30+
# Disable directory listing
31+
Options All -Indexes
32+
33+
# Remove header with PHP version
34+
Header always unset X-Powered-By
35+
Header unset X-Powered-By
36+
# END Security Block

.litespeed_flag

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This file was created by LiteSpeed Web Cache Manager
2+
3+
When this file exists, your LiteSpeed Cache plugin for WordPress will NOT be affected
4+
by Mass Enable/Disable operations performed through LiteSpeed Web Cache Manager.
5+
6+
Please DO NOT ATTEMPT to remove this file unless you understand the above.

index.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
/**
3+
* Front to the WordPress application. This file doesn't do anything, but loads
4+
* wp-blog-header.php which does and tells WordPress to load the theme.
5+
*
6+
* @package WordPress
7+
*/
8+
9+
/**
10+
* Tells WordPress to load the WordPress theme and output it.
11+
*
12+
* @var bool
13+
*/
14+
define( 'WP_USE_THEMES', true );
15+
16+
/** Loads the WordPress Environment and Template */
17+
require __DIR__ . '/wp-blog-header.php';

0 commit comments

Comments
 (0)