<IfModule mod_autoindex>
	Options -Indexes
</IfModule>

# Gzip сжатие / поддерживается не на всех хостингах
<IfModule mod_deflate.c>
	# Compress HTML, CSS, JavaScript, Text, XML and fonts
	AddOutputFilterByType DEFLATE application/javascript
	AddOutputFilterByType DEFLATE application/rss+xml
	AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
	AddOutputFilterByType DEFLATE application/x-font
	AddOutputFilterByType DEFLATE application/x-font-opentype
	AddOutputFilterByType DEFLATE application/x-font-otf
	AddOutputFilterByType DEFLATE application/x-font-truetype
	AddOutputFilterByType DEFLATE application/x-font-ttf
	AddOutputFilterByType DEFLATE application/x-javascript
	AddOutputFilterByType DEFLATE application/xhtml+xml
	AddOutputFilterByType DEFLATE application/xml
	AddOutputFilterByType DEFLATE font/opentype
	AddOutputFilterByType DEFLATE font/otf
	AddOutputFilterByType DEFLATE font/ttf
	AddOutputFilterByType DEFLATE image/svg+xml
	AddOutputFilterByType DEFLATE image/x-icon
	AddOutputFilterByType DEFLATE text/css
	AddOutputFilterByType DEFLATE text/html
	AddOutputFilterByType DEFLATE text/javascript
	AddOutputFilterByType DEFLATE text/plain
	AddOutputFilterByType DEFLATE text/xml

	# Remove browser bugs (only needed for really old browsers)
	<ifmodule mod_setenvif.c>
		BrowserMatch ^Mozilla/4 gzip-only-text/html
		BrowserMatch ^Mozilla/4\.0[678] no-gzip
		BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
	</ifmodule>
</IfModule>

<ifModule mod_headers.c>
	# Все html и htm файлы будут храниться в кэше браузера один день
	<FilesMatch "\.(html|htm)$">
		Header set Cache-Control "max-age=43200"
	</FilesMatch>
	# Все css, javascript и текстовые файлы будут храниться в кэше браузера одну неделю
	<FilesMatch "\.(js|css|txt)$">
		Header set Cache-Control "max-age=604800"
	</FilesMatch>
	# Все флэш файлы и изображения будут храниться в кэше браузера один месяц
	<FilesMatch "\.(flv|swf|ico|gif|jpg|jpeg|png)$">
		Header set Cache-Control "max-age=43200"
	</FilesMatch>
	# Отключаем кеширование php и других служебных файлов
	<FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$">
	Header unset Cache-Control
	</FilesMatch>
</IfModule>

# Кэширование / поддерживается не на всех хостингах
<ifmodule mod_expires.c>
	<filesmatch "\.(jpg|jpeg|png|gif|js|css|swf|ico|woff|mp3)$">
	ExpiresActive on
	ExpiresDefault "access plus 7 days"
	</filesmatch>
</ifmodule>

# Google PageSpeed Insights модуль PageSpeed,есть не на всех хостингах и не везде может работать, нужно уточнять у хостеров
<IfModule pagespeed_module>
	ModPagespeed on
	ModPagespeedRewriteLevel CoreFilters
	ModPagespeedEnableFilters make_google_analytics_async
	ModPagespeedEnableFilters prioritize_critical_css
	ModPagespeedEnableFilters defer_javascript
	ModPagespeedEnableFilters sprite_images
	ModPagespeedEnableFilters convert_png_to_jpeg,convert_jpeg_to_webp
	ModPagespeedEnableFilters collapse_whitespace,remove_comments
</IfModule>

DirectoryIndex /public/section.php?sectionId=1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048
RewriteEngine On

SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

# Редирект на домен если используют index.php.
RewriteCond %{THE_REQUEST} ^.*/index\.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]

# Проверяем, повторяется ли слеш (//) более двух раз.
RewriteCond %{THE_REQUEST} \s[^?]*//
# Исключаем все лишние слеши.
RewriteRule ^(.+?)/{2,}(.*)$ $1/$2 [R=301,L]

# match any URL with www and rewrite it to https without the www
RewriteCond %{HTTP_HOST} ^(www\.)(.*) [NC]
RewriteRule (.*) https://%2%{REQUEST_URI} [L,R=301]

RewriteCond %{HTTPS} =off
# match urls that are non https (without the www)
RewriteCond %{HTTP_HOST} !^(www\.)(.*) [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [QSA,L]

ErrorDocument 404 /public/error-404.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048


RewriteRule ^rss.xml$ /public/rss.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sitemap.xml$ /public/sitemap.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]

RewriteRule ^index\.htm$ https://brendgoda24.lifestyle.uz/ [L,R=301]


#RewriteRule ^brands/([^/]+)/page([0-9]+)\.htm$ /public/brand.php?%{QUERY_STRING}&fileName=$1&page=$2&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
#RewriteRule ^brands/([^/]+)/([^/]+)/page([0-9]+)\.htm$ /public/brand.php?%{QUERY_STRING}&fileName=$1&page=$2&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
#RewriteRule ^brands/([^/]+)/([^/]+) /public/brand.php?%{QUERY_STRING}&fileName=$1&param=$2&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
#RewriteRule ^brands/([^/]+) /public/brand.php?%{QUERY_STRING}&fileName=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award$ /about-award/ [L,R=301]
RewriteRule ^about\-award/$ /public/section.php?%{QUERY_STRING}&sectionId=2&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=2&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=2&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/stages\-of\-the\-award$ /about-award/stages-of-the-award/ [L,R=301]
RewriteRule ^about\-award/stages\-of\-the\-award/$ /public/section.php?%{QUERY_STRING}&sectionId=6&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/stages\-of\-the\-award/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=6&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/stages\-of\-the\-award/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=6&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award$ /about-award/why-should-brands-participate-in-the-award/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/$ /public/section.php?%{QUERY_STRING}&sectionId=7&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=7&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=7&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/opportunities$ /about-award/why-should-brands-participate-in-the-award/opportunities/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/opportunities/$ /public/section.php?%{QUERY_STRING}&sectionId=8&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/opportunities/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=8&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/opportunities/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=8&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/achievments\-2024$ /about-award/why-should-brands-participate-in-the-award/achievments-2024/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/achievments\-2024/$ /public/section.php?%{QUERY_STRING}&sectionId=9&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/achievments\-2024/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=9&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/achievments\-2024/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=9&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/counting\-cost$ /about-award/why-should-brands-participate-in-the-award/counting-cost/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/counting\-cost/$ /public/section.php?%{QUERY_STRING}&sectionId=10&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/counting\-cost/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=10&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/counting\-cost/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=10&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/marketing\-i\-biznes$ /about-award/why-should-brands-participate-in-the-award/marketing-i-biznes/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/marketing\-i\-biznes/$ /public/section.php?%{QUERY_STRING}&sectionId=11&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/marketing\-i\-biznes/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=11&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/marketing\-i\-biznes/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=11&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/status\-brend\-2024\-goda$ /about-award/why-should-brands-participate-in-the-award/status-brend-2024-goda/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/status\-brend\-2024\-goda/$ /public/section.php?%{QUERY_STRING}&sectionId=142&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/status\-brend\-2024\-goda/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=142&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/status\-brend\-2024\-goda/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=142&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/mezhdunarodnyj\-brend$ /about-award/why-should-brands-participate-in-the-award/mezhdunarodnyj-brend/ [L,R=301]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/mezhdunarodnyj\-brend/$ /public/section.php?%{QUERY_STRING}&sectionId=143&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/mezhdunarodnyj\-brend/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=143&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/why\-should\-brands\-participate\-in\-the\-award/mezhdunarodnyj\-brend/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=143&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^about\-award/raschet\-stoimosti\-brenda$ /about-award/raschet-stoimosti-brenda/ [L,R=301]
RewriteRule ^about\-award/raschet\-stoimosti\-brenda/$ /public/section.php?%{QUERY_STRING}&sectionId=141&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/raschet\-stoimosti\-brenda/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=141&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^about\-award/raschet\-stoimosti\-brenda/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=141&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^reglament$ /reglament/ [L,R=301]
RewriteRule ^reglament/$ /public/section.php?%{QUERY_STRING}&sectionId=51&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^reglament/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=51&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^reglament/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=51&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^nominations$ /nominations/ [L,R=301]
RewriteRule ^nominations/$ /public/section.php?%{QUERY_STRING}&sectionId=3&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=3&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=3&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/banki\-finansovye\-instituty\-strahovanie$ /nominations/banki-finansovye-instituty-strahovanie/ [L,R=301]
RewriteRule ^nominations/banki\-finansovye\-instituty\-strahovanie/$ /public/section.php?%{QUERY_STRING}&sectionId=12&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/banki\-finansovye\-instituty\-strahovanie/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=12&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/banki\-finansovye\-instituty\-strahovanie/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=12&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/produkty\-pitaniya\-napitki$ /nominations/produkty-pitaniya-napitki/ [L,R=301]
RewriteRule ^nominations/produkty\-pitaniya\-napitki/$ /public/section.php?%{QUERY_STRING}&sectionId=13&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/produkty\-pitaniya\-napitki/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=13&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/produkty\-pitaniya\-napitki/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=13&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/horeca\-roznichnaya\-optovaya\-i\-onlajn\-torgovlya$ /nominations/horeca-roznichnaya-optovaya-i-onlajn-torgovlya/ [L,R=301]
RewriteRule ^nominations/horeca\-roznichnaya\-optovaya\-i\-onlajn\-torgovlya/$ /public/section.php?%{QUERY_STRING}&sectionId=14&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/horeca\-roznichnaya\-optovaya\-i\-onlajn\-torgovlya/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=14&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/horeca\-roznichnaya\-optovaya\-i\-onlajn\-torgovlya/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=14&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/obschestvo\-smi$ /nominations/obschestvo-smi/ [L,R=301]
RewriteRule ^nominations/obschestvo\-smi/$ /public/section.php?%{QUERY_STRING}&sectionId=15&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/obschestvo\-smi/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=15&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/obschestvo\-smi/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=15&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/tehnologii\-i\-kommunikatsiya$ /nominations/tehnologii-i-kommunikatsiya/ [L,R=301]
RewriteRule ^nominations/tehnologii\-i\-kommunikatsiya/$ /public/section.php?%{QUERY_STRING}&sectionId=16&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/tehnologii\-i\-kommunikatsiya/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=16&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/tehnologii\-i\-kommunikatsiya/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=16&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/meditsina\-farmatsevtika$ /nominations/meditsina-farmatsevtika/ [L,R=301]
RewriteRule ^nominations/meditsina\-farmatsevtika/$ /public/section.php?%{QUERY_STRING}&sectionId=17&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/meditsina\-farmatsevtika/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=17&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/meditsina\-farmatsevtika/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=17&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/transport\-i\-logistika$ /nominations/transport-i-logistika/ [L,R=301]
RewriteRule ^nominations/transport\-i\-logistika/$ /public/section.php?%{QUERY_STRING}&sectionId=18&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/transport\-i\-logistika/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=18&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/transport\-i\-logistika/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=18&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/nauka\-obrazovanie\-konsalting$ /nominations/nauka-obrazovanie-konsalting/ [L,R=301]
RewriteRule ^nominations/nauka\-obrazovanie\-konsalting/$ /public/section.php?%{QUERY_STRING}&sectionId=20&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/nauka\-obrazovanie\-konsalting/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=20&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/nauka\-obrazovanie\-konsalting/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=20&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/nedvizhimost\-stroitelstvo$ /nominations/nedvizhimost-stroitelstvo/ [L,R=301]
RewriteRule ^nominations/nedvizhimost\-stroitelstvo/$ /public/section.php?%{QUERY_STRING}&sectionId=21&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/nedvizhimost\-stroitelstvo/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=21&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/nedvizhimost\-stroitelstvo/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=21&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/sport\-razvlecheniya\-fitnes\-turizm\-zdorove$ /nominations/sport-razvlecheniya-fitnes-turizm-zdorove/ [L,R=301]
RewriteRule ^nominations/sport\-razvlecheniya\-fitnes\-turizm\-zdorove/$ /public/section.php?%{QUERY_STRING}&sectionId=24&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/sport\-razvlecheniya\-fitnes\-turizm\-zdorove/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=24&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/sport\-razvlecheniya\-fitnes\-turizm\-zdorove/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=24&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/dom\-i\-ofis\-predmety\-interera\-i\-dekora$ /nominations/dom-i-ofis-predmety-interera-i-dekora/ [L,R=301]
RewriteRule ^nominations/dom\-i\-ofis\-predmety\-interera\-i\-dekora/$ /public/section.php?%{QUERY_STRING}&sectionId=25&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/dom\-i\-ofis\-predmety\-interera\-i\-dekora/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=25&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/dom\-i\-ofis\-predmety\-interera\-i\-dekora/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=25&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^nominations/moda\-krasota\-deti$ /nominations/moda-krasota-deti/ [L,R=301]
RewriteRule ^nominations/moda\-krasota\-deti/$ /public/section.php?%{QUERY_STRING}&sectionId=26&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/moda\-krasota\-deti/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=26&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^nominations/moda\-krasota\-deti/([^/]+)\.htm$ /public/nominee.php?%{QUERY_STRING}&fileName=$1&sectionId=26&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]



RewriteRule ^participants$ /participants/ [L,R=301]
RewriteRule ^participants/$ /public/section.php?%{QUERY_STRING}&sectionId=145&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^participants/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=145&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^participants/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=145&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^judges$ /judges/ [L,R=301]
RewriteRule ^judges/$ /public/section.php?%{QUERY_STRING}&sectionId=4&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^judges/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=4&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^judges/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=4&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners$ /partners/ [L,R=301]
RewriteRule ^partners/$ /public/section.php?%{QUERY_STRING}&sectionId=5&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=5&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=5&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/organizatory$ /partners/organizatory/ [L,R=301]
RewriteRule ^partners/organizatory/$ /public/section.php?%{QUERY_STRING}&sectionId=37&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/organizatory/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=37&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/organizatory/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=37&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/generalnyj\-partner$ /partners/generalnyj-partner/ [L,R=301]
RewriteRule ^partners/generalnyj\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=38&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/generalnyj\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=38&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/generalnyj\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=38&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/strategicheskij\-partner$ /partners/strategicheskij-partner/ [L,R=301]
RewriteRule ^partners/strategicheskij\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=54&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/strategicheskij\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=54&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/strategicheskij\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=54&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/event\-partner$ /partners/event-partner/ [L,R=301]
RewriteRule ^partners/event\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=43&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/event\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=43&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/event\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=43&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/beverage\-partner$ /partners/beverage-partner/ [L,R=301]
RewriteRule ^partners/beverage\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=40&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/beverage\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=40&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/beverage\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=40&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/ofitsialnye\-partnery$ /partners/ofitsialnye-partnery/ [L,R=301]
RewriteRule ^partners/ofitsialnye\-partnery/$ /public/section.php?%{QUERY_STRING}&sectionId=41&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/ofitsialnye\-partnery/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=41&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/ofitsialnye\-partnery/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=41&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/vip\-partnery$ /partners/vip-partnery/ [L,R=301]
RewriteRule ^partners/vip\-partnery/$ /public/section.php?%{QUERY_STRING}&sectionId=42&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/vip\-partnery/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=42&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/vip\-partnery/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=42&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/tehnicheskij\-partner$ /partners/tehnicheskij-partner/ [L,R=301]
RewriteRule ^partners/tehnicheskij\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=128&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/tehnicheskij\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=128&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/tehnicheskij\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=128&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/auto\-partner$ /partners/auto-partner/ [L,R=301]
RewriteRule ^partners/auto\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=135&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/auto\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=135&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/auto\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=135&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/titulnyj\-partner$ /partners/titulnyj-partner/ [L,R=301]
RewriteRule ^partners/titulnyj\-partner/$ /public/section.php?%{QUERY_STRING}&sectionId=39&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/titulnyj\-partner/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=39&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/titulnyj\-partner/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=39&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/industrialnye\-partnery$ /partners/industrialnye-partnery/ [L,R=301]
RewriteRule ^partners/industrialnye\-partnery/$ /public/section.php?%{QUERY_STRING}&sectionId=44&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/industrialnye\-partnery/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=44&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/industrialnye\-partnery/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=44&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/partnery$ /partners/partnery/ [L,R=301]
RewriteRule ^partners/partnery/$ /public/section.php?%{QUERY_STRING}&sectionId=45&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/partnery/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=45&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/partnery/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=45&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^partners/informatsionnye\-partnery$ /partners/informatsionnye-partnery/ [L,R=301]
RewriteRule ^partners/informatsionnye\-partnery/$ /public/section.php?%{QUERY_STRING}&sectionId=46&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/informatsionnye\-partnery/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=46&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^partners/informatsionnye\-partnery/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=46&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^faq$ /faq/ [L,R=301]
RewriteRule ^faq/$ /public/section.php?%{QUERY_STRING}&sectionId=144&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^faq/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=144&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^faq/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=144&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^sign\-in$ /sign-in/ [L,R=301]
RewriteRule ^sign\-in/$ /public/section.php?%{QUERY_STRING}&sectionId=47&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-in/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=47&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-in/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=47&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^sign\-up$ /sign-up/ [L,R=301]
RewriteRule ^sign\-up/$ /public/section.php?%{QUERY_STRING}&sectionId=48&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-up/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=48&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-up/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=48&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^sign\-out$ /sign-out/ [L,R=301]
RewriteRule ^sign\-out/$ /public/section.php?%{QUERY_STRING}&sectionId=49&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-out/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=49&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^sign\-out/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=49&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^my\-application$ /my-application/ [L,R=301]
RewriteRule ^my\-application/$ /public/section.php?%{QUERY_STRING}&sectionId=52&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^my\-application/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=52&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^my\-application/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=52&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^add\-application$ /add-application/ [L,R=301]
RewriteRule ^add\-application/$ /public/section.php?%{QUERY_STRING}&sectionId=53&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^add\-application/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=53&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^add\-application/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=53&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


RewriteRule ^footer$ /footer/ [L,R=301]
RewriteRule ^footer/$ /public/section.php?%{QUERY_STRING}&sectionId=50&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^footer/page([0-9]+)\.htm$ /public/section.php?%{QUERY_STRING}&sectionId=50&page=$1&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]
RewriteRule ^footer/([^/]+)\.htm$ /public/article.php?%{QUERY_STRING}&fileName=$1&sectionId=50&rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [L]


# все запросы в префиксом (ajax) будут обрабатываться следующим образом ajax-(что здесь будет) /public/ajax-feedback СЮДА ПРИДЕТ.php
RewriteRule ^ajax-(.*) /public/ajax-$1.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [QSA]
# все запросы в префиксом (api) будут обрабатываться следующим образом api-(что здесь будет) /public/api-app СЮДА ПРИДЕТ.php
RewriteRule ^api-(.*) /public/api-$1.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [QSA]

RewriteRule ^api/v1/(.*)/ /api/$1.php?rewrite=fd97a26fc513d63bd7aa50ebe5f0a048 [QSA]

# Set the “ea-php74” package as the default “PHP” programming language.
<IfModule mime_module>
	AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
</IfModule>

