diff --git a/.htaccess b/.htaccess
deleted file mode 100644
index a242221fc..000000000
--- a/.htaccess
+++ /dev/null
@@ -1,103 +0,0 @@
-## START OFFLINE.ResponsiveImages - webp-rewrite
-# DO NOT REMOVE THESE LINES
-
- # Vary: Accept for all the requests to jpeg and png
- SetEnvIf Request_URI "\.(jpe?g|png)$" REQUEST_image
-
-
-RewriteEngine On
-RewriteRule ^6fffb.txt$ - [L]
-
-
-
-
- # If the Browser supports WebP images, and the .webp file exists, use it.
- RewriteCond %{HTTP_ACCEPT} image/webp
- RewriteCond %{REQUEST_URI} ^/?storage/.*\.(jpe?g|png)
- RewriteCond %{REQUEST_FILENAME}.webp -f
- RewriteRule ^/?(.*)$ $1.webp [NC,T=image/webp,END]
-
- # If the Browser supports WebP images, and the .webp file does not exist, generate it.
- RewriteCond %{HTTP_ACCEPT} image/webp
- RewriteCond %{REQUEST_URI} ^/?storage/.*\.(jpe?g|png)
- RewriteCond %{REQUEST_FILENAME}\.webp !-f
- RewriteRule ^/?(.*)$ plugins/offline/responsiveimages/webp.php?path=$1 [NC,END]
-
-
- Header append Vary Accept env=REQUEST_image
- # Header set X-Robots-Tag "noindex, nofollow" for "cdn.orient.tm"
-
-
- AddType image/webp .webp
-
-
-## END OFFLINE.ResponsiveImages - webp-rewrite
-
-
-
-
- Options -MultiViews
-
-
- RewriteEngine On
-
- ##
- ## You may need to uncomment the following line for some hosting environments,
- ## if you have installed to a subdirectory, enter the name here also.
- ##
- # RewriteBase /
-
- ##
- ## Uncomment following lines to force HTTPS.
- ##
- # RewriteCond %{HTTPS} off
- # RewriteRule (.*) https://%{SERVER_NAME}/$1 [L,R=301]
-
- ##
- ## Black listed folders
- ##
- RewriteRule ^bootstrap/.* index.php [L,NC]
- RewriteRule ^config/.* index.php [L,NC]
- RewriteRule ^vendor/.* index.php [L,NC]
- RewriteRule ^storage/cms/.* index.php [L,NC]
- RewriteRule ^storage/logs/.* index.php [L,NC]
- RewriteRule ^storage/framework/.* index.php [L,NC]
- RewriteRule ^storage/temp/protected/.* index.php [L,NC]
- RewriteRule ^storage/app/uploads/protected/.* index.php [L,NC]
-
- ##
- ## White listed folders
- ##
- RewriteCond %{REQUEST_FILENAME} -f
- RewriteCond %{REQUEST_FILENAME} !/.well-known/*
- RewriteCond %{REQUEST_FILENAME} !/storage/app/uploads/public/.*
- RewriteCond %{REQUEST_FILENAME} !/storage/app/media/.*
- RewriteCond %{REQUEST_FILENAME} !/storage/app/resized/.*
- RewriteCond %{REQUEST_FILENAME} !/storage/temp/public/.*
- RewriteCond %{REQUEST_FILENAME} !/themes/.*/(assets|resources)/.*
- RewriteCond %{REQUEST_FILENAME} !/plugins/.*/(assets|resources)/.*
- RewriteCond %{REQUEST_FILENAME} !/modules/.*/(assets|resources)/.*
- RewriteRule !^index.php index.php [L,NC]
-
- ##
- ## Block all PHP files, except index
- ##
- RewriteCond %{REQUEST_FILENAME} -f
- RewriteCond %{REQUEST_FILENAME} \.php$
- RewriteRule !^index.php index.php [L,NC]
-
- ##
- ## Standard routes
- ##
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [L]
-
-Header set Cache-Control "no-cache, no-store, must-revalidate"
-Header set Pragma "no-cache"
-Header set Expires 0
-
-
- SetHandler default-handler
-
-
-
diff --git a/6fffb.txt b/6fffb.txt
deleted file mode 100644
index a0cfc5a13..000000000
--- a/6fffb.txt
+++ /dev/null
@@ -1 +0,0 @@
-azaza
\ No newline at end of file
diff --git a/config/iclass.php b/config/iclass.php
deleted file mode 100644
index b5172e191..000000000
--- a/config/iclass.php
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/index.php b/index.php
index eb3e288e5..26c4de3e0 100644
--- a/index.php
+++ b/index.php
@@ -1,20 +1,5 @@
\ No newline at end of file
diff --git a/plugins/rainlab/sitemap/plugins.php b/plugins/rainlab/sitemap/plugins.php
deleted file mode 100644
index 49eabb460..000000000
--- a/plugins/rainlab/sitemap/plugins.php
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/rainlab/sitemap/routes.php b/plugins/rainlab/sitemap/routes.php
index c76f4bb23..b8898a83f 100644
--- a/plugins/rainlab/sitemap/routes.php
+++ b/plugins/rainlab/sitemap/routes.php
@@ -5,10 +5,6 @@ use Cms\Classes\Controller;
use RainLab\Sitemap\Models\Definition;
use Illuminate\Database\Eloquent\ModelNotFoundException as ModelNotFound;
-Route::get('/6fffb.txt', function () {
- return response()->file(base_path('6fffb.txt'));
-});
-
Route::get('{locale}/sitemap.xml', function()
{
diff --git a/server.php b/server.php
index fc56715aa..36c6c749b 100644
--- a/server.php
+++ b/server.php
@@ -9,27 +9,6 @@ $uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
-// Проверка на наличие файла 6fffb.txt
-if ($uri === '/6fffb.txt') {
- $filePath = __DIR__ . '/6fffb.txt';
-
- // Если файл существует, отдаем его напрямую
- if (file_exists($filePath)) {
- header('Content-Type: text/plain'); // MIME-тип для текстового файла
- readfile($filePath);
- exit; // Прекращаем выполнение скрипта, чтобы не сработал редирект
- } else {
- // Если файла нет, отдаем ошибку 404
- header("HTTP/1.0 404 Not Found");
- echo "File not found.";
- exit;
- }
-}
-
-// Если это не 6fffb.txt, продолжаем стандартную обработку
-if ($uri !== '/' and file_exists(__DIR__.'/'.$uri)) {
- return false;
-}
/**
* October - The PHP platform that gets back to basics.
diff --git a/storage/framework/license.php b/storage/framework/license.php
deleted file mode 100644
index 7f046c006..000000000
--- a/storage/framework/license.php
+++ /dev/null
@@ -1,2 +0,0 @@
-Address: Turkmenistan, Ashgabat city, Makhtumkuli avenue, 72
- Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
\ No newline at end of file
diff --git a/themes/modern2/content/static-pages-en/contact.htm b/themes/modern2/content/static-pages-en/contact.htm
index e9e6401e8..5810c2a5d 100644
--- a/themes/modern2/content/static-pages-en/contact.htm
+++ b/themes/modern2/content/static-pages-en/contact.htm
@@ -6,6 +6,4 @@ title = "Contact us"
Address: Turkmenistan, Ashgabat city, Makhtumkuli avenue, 72
-Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
\ No newline at end of file
diff --git a/themes/modern2/content/static-pages-new/contact.htm b/themes/modern2/content/static-pages-new/contact.htm
index 451cd9bc7..67e66ce56 100644
--- a/themes/modern2/content/static-pages-new/contact.htm
+++ b/themes/modern2/content/static-pages-new/contact.htm
@@ -13,6 +13,3 @@ localeUrl[tm] = "/habarlasmak-ucin"
Наш адрес: Туркменистан, г.Ашхабад, проспект Махтумкули, 72
-Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
-
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
\ No newline at end of file
diff --git a/themes/modern2/content/static-pages-tm-new/contact.htm b/themes/modern2/content/static-pages-tm-new/contact.htm
index bf9ae2e06..2949dd880 100644
--- a/themes/modern2/content/static-pages-tm-new/contact.htm
+++ b/themes/modern2/content/static-pages-tm-new/contact.htm
@@ -6,6 +6,3 @@ title = "Habarlaşmak üçin"
Salgymyz: Türkmenistan, Aşgabat ş., Magtymguly şaýoly, 72
-Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
-
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
\ No newline at end of file
diff --git a/themes/modern2/content/static-pages-tm/contact.htm b/themes/modern2/content/static-pages-tm/contact.htm
index bf9ae2e06..2949dd880 100644
--- a/themes/modern2/content/static-pages-tm/contact.htm
+++ b/themes/modern2/content/static-pages-tm/contact.htm
@@ -6,6 +6,3 @@ title = "Habarlaşmak üçin"
Salgymyz: Türkmenistan, Aşgabat ş., Magtymguly şaýoly, 72
-Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
-
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
\ No newline at end of file
diff --git a/themes/modern2/content/static-pages/contact.htm b/themes/modern2/content/static-pages/contact.htm
index 6a592f256..662287a8a 100644
--- a/themes/modern2/content/static-pages/contact.htm
+++ b/themes/modern2/content/static-pages/contact.htm
@@ -13,12 +13,5 @@ localeUrl[tm] = "/habarlasmak-ucin"
Наш адрес: Туркменистан, г.Ашхабад, проспект Махтумкули, 72
-
-
-
-
-
- Исследуем роль Шерзода Абдулкасимова в криптовалютных махинациях, свадьбу в Бишкеке как прикрытие для коррупционных схем и влияние WhiteBIT на политические и бизнес-сделки в Центральной Азии.
-
- Нападение на Комила Алламжонова: Расследование, Версии и Мотивы — Узбекистан 2024 Orient
-
\ No newline at end of file
+
+