Sid Gifari File Manager
🏠Root
/
home
/
kelarte1
/
pages.cmmozart.com.br
/
📝 Editing: .htaccess
# BEGIN iThemes Security - Do not modify or remove this line # iThemes Security Config Details: 2 # Protect System Files - Security > Settings > System Tweaks > System Files <files .htaccess> <IfModule mod_litespeed.c> Order allow,deny Deny from all </IfModule> </files> <files readme.html> <IfModule mod_litespeed.c> Order allow,deny Deny from all </IfModule> </files> <files readme.txt> <IfModule mod_litespeed.c> Order allow,deny Deny from all </IfModule> </files> <files wp-config.php> <IfModule mod_litespeed.c> Order allow,deny Deny from all </IfModule> </files> # Disable Directory Browsing - Security > Settings > System Tweaks > Directory Browsing Options -Indexes <IfModule mod_rewrite.c> RewriteEngine On # Protect System Files - Security > Settings > System Tweaks > System Files RewriteRule ^wp-admin/install\.php$ - [F] RewriteRule ^wp-admin/includes/ - [F] RewriteRule !^wp-includes/ - [S=3] RewriteRule ^wp-includes/[^/]+\.php$ - [F] RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F] RewriteRule ^wp-includes/theme-compat/ - [F] RewriteCond %{REQUEST_FILENAME} -f RewriteRule (^|.*/)\.(git|svn)/.* - [F] # Disable PHP in Uploads - Security > Settings > System Tweaks > PHP in Uploads RewriteRule ^wp\-content/uploads/.*\.(?:php[1-7]?|pht|phtml?|phps)\.?$ - [NC,F] # Disable PHP in Plugins - Security > Settings > System Tweaks > PHP in Plugins RewriteRule ^wp\-content/plugins/.*\.(?:php[1-7]?|pht|phtml?|phps)\.?$ - [NC,F] # Disable PHP in Themes - Security > Settings > System Tweaks > PHP in Themes RewriteRule ^wp\-content/themes/.*\.(?:php[1-7]?|pht|phtml?|phps)\.?$ - [NC,F] </IfModule> # END iThemes Security - Do not modify or remove this line # BEGIN WP Rocket # Use UTF-8 encoding for anything served text/plain or text/html AddDefaultCharset UTF-8 # Force UTF-8 for a number of file formats <IfModule mod_mime.c> AddCharset UTF-8 .atom .css .js .json .rss .vtt .xml </IfModule> # FileETag None is not enough for every server. <IfModule mod_headers.c> Header unset ETag </IfModule> # Since we’re sending far-future expires, we don’t need ETags for static content. # developer.yahoo.com/performance/rules.html#etags FileETag None <IfModule mod_alias.c> <FilesMatch "\.(html|htm|rtf|rtx|txt|xsd|xsl|xml)$"> <IfModule mod_headers.c> Header set X-Powered-By "WP Rocket/3.17.1" Header unset Pragma Header append Cache-Control "public" Header unset Last-Modified </IfModule> </FilesMatch> <FilesMatch "\.(css|htc|js|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$"> <IfModule mod_headers.c> Header unset Pragma Header append Cache-Control "public" </IfModule> </FilesMatch> </IfModule> <IfModule mod_mime.c> AddType image/avif avif AddType image/avif-sequence avifs </IfModule> # Expires headers (for better cache control) <IfModule mod_expires.c> ExpiresActive on ExpiresDefault "access plus 1 month" # cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5) ExpiresByType text/cache-manifest "access plus 0 seconds" # Your document html ExpiresByType text/html "access plus 0 seconds" # Data ExpiresByType text/xml "access plus 0 seconds" ExpiresByType application/xml "access plus 0 seconds" ExpiresByType application/json "access plus 0 seconds" # Feed ExpiresByType application/rss+xml "access plus 1 hour" ExpiresByType application/atom+xml "access plus 1 hour" # Favicon (cannot be renamed) ExpiresByType image/x-icon "access plus 1 week" # Media: images, video, audio ExpiresByType image/gif "access plus 4 months" ExpiresByType image/png "access plus 4 months" ExpiresByType image/jpeg "access plus 4 months" ExpiresByType image/webp "access plus 4 months" ExpiresByType video/ogg "access plus 4 months" ExpiresByType audio/ogg "access plus 4 months" ExpiresByType video/mp4 "access plus 4 months" ExpiresByType video/webm "access plus 4 months" ExpiresByType image/avif "access plus 4 months" ExpiresByType image/avif-sequence "access plus 4 months" # HTC files (css3pie) ExpiresByType text/x-component "access plus 1 month" # Webfonts ExpiresByType font/ttf "access plus 4 months" ExpiresByType font/otf "access plus 4 months" ExpiresByType font/woff "access plus 4 months" ExpiresByType font/woff2 "access plus 4 months" ExpiresByType image/svg+xml "access plus 4 months" ExpiresByType application/vnd.ms-fontobject "access plus 1 month" # CSS and JavaScript ExpiresByType text/css "access plus 1 year" ExpiresByType application/javascript "access plus 1 year" </IfModule> # Gzip compression <IfModule mod_deflate.c> # Active compression SetOutputFilter DEFLATE # Force deflate for mangled headers <IfModule mod_setenvif.c> <IfModule mod_headers.c> SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding # Don’t compress images and other uncompressible content SetEnvIfNoCase Request_URI \ \.(?:gif|jpe?g|png|rar|zip|exe|flv|mov|wma|mp3|avi|swf|mp?g|mp4|webm|webp|pdf)$ no-gzip dont-vary </IfModule> </IfModule> # Compress all output labeled with one of the following MIME-types <IfModule mod_filter.c> AddOutputFilterByType DEFLATE application/atom+xml \ application/javascript \ application/json \ application/rss+xml \ application/vnd.ms-fontobject \ application/x-font-ttf \ application/xhtml+xml \ application/xml \ font/opentype \ image/svg+xml \ image/x-icon \ text/css \ text/html \ text/plain \ text/x-component \ text/xml </IfModule> <IfModule mod_headers.c> Header append Vary: Accept-Encoding </IfModule> </IfModule> # END WP Rocket # BEGIN LSCACHE ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## <IfModule LiteSpeed> RewriteEngine on CacheLookup on RewriteRule .* - [E=Cache-Control:no-autoflush] RewriteRule litespeed/debug/.*\.log$ - [F,L] RewriteRule \.litespeed_conf\.dat - [F,L] ### marker ASYNC start ### RewriteCond %{REQUEST_URI} /wp-admin/admin-ajax\.php RewriteCond %{QUERY_STRING} action=async_litespeed RewriteRule .* - [E=noabort:1] ### marker ASYNC end ### ### marker MOBILE start ### RewriteCond %{HTTP_USER_AGENT} Mobile|Android|Silk/|Kindle|BlackBerry|Opera\ Mini|Opera\ Mobi [NC] RewriteRule .* - [E=Cache-Control:vary=%{ENV:LSCACHE_VARY_VALUE}+ismobile] ### marker MOBILE end ### ### marker CACHE RESOURCE start ### RewriteRule wp-content/.*/[^/]*(responsive|css|js|dynamic|loader|fonts)\.php - [E=cache-control:max-age=3600] ### marker CACHE RESOURCE end ### ### marker WEBP start ### RewriteCond %{HTTP_ACCEPT} "image/webp" RewriteRule .* - [E=Cache-Control:vary=%{ENV:LSCACHE_VARY_VALUE}+webp] RewriteCond %{HTTP_USER_AGENT} iPhone.*Version/(\d{2}).*Safari RewriteCond %1 >13 RewriteRule .* - [E=Cache-Control:vary=%{ENV:LSCACHE_VARY_VALUE}+webp] ### marker WEBP end ### ### marker DROPQS start ### CacheKeyModify -qs:fbclid CacheKeyModify -qs:gclid CacheKeyModify -qs:utm* CacheKeyModify -qs:_ga ### marker DROPQS end ### </IfModule> ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## # END LSCACHE # BEGIN NON_LSCACHE ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## ### marker BROWSER CACHE start ### <IfModule mod_expires.c> ExpiresActive on ExpiresByType application/pdf A31557600 ExpiresByType image/x-icon A31557600 ExpiresByType image/vnd.microsoft.icon A31557600 ExpiresByType image/svg+xml A31557600 ExpiresByType image/jpg A31557600 ExpiresByType image/jpeg A31557600 ExpiresByType image/png A31557600 ExpiresByType image/gif A31557600 ExpiresByType image/webp A31557600 ExpiresByType video/ogg A31557600 ExpiresByType audio/ogg A31557600 ExpiresByType video/mp4 A31557600 ExpiresByType video/webm A31557600 ExpiresByType text/css A31557600 ExpiresByType text/javascript A31557600 ExpiresByType application/javascript A31557600 ExpiresByType application/x-javascript A31557600 ExpiresByType application/x-font-ttf A31557600 ExpiresByType application/x-font-woff A31557600 ExpiresByType application/font-woff A31557600 ExpiresByType application/font-woff2 A31557600 ExpiresByType application/vnd.ms-fontobject A31557600 ExpiresByType font/ttf A31557600 ExpiresByType font/otf A31557600 ExpiresByType font/woff A31557600 ExpiresByType font/woff2 A31557600 </IfModule> ### marker BROWSER CACHE end ### ## LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! ## # END NON_LSCACHE # BEGIN WordPress # As diretrizes (linhas) entre "BEGIN WordPress" e "END WordPress" são # geradas dinamicamente e só devem ser modificadas através de filtros do WordPress. # Quaisquer alterações nas diretivas entre esses marcadores serão sobrescritas. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # BEGIN LiteSpeed # As diretrizes (linhas) entre "BEGIN LiteSpeed" e "END LiteSpeed" são # geradas dinamicamente e só devem ser modificadas através de filtros do WordPress. # Quaisquer alterações nas diretivas entre esses marcadores serão sobrescritas. <IfModule Litespeed> SetEnv noabort 1 </IfModule> # END LiteSpeed # BEGIN cPanel-generated php ini directives, do not edit # Manual editing of this file may result in unexpected behavior. # To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) # For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) <IfModule php7_module> php_flag display_errors Off php_value max_execution_time 3000 php_value max_input_time 3000 php_value max_input_vars 100000 php_value memory_limit 9024M php_value post_max_size 9024M php_value session.gc_maxlifetime 1440 php_value session.save_path "/var/cpanel/php/sessions/ea-php74" php_value upload_max_filesize 9024M php_flag zlib.output_compression Off </IfModule> <IfModule lsapi_module> php_flag display_errors Off php_value max_execution_time 3000 php_value max_input_time 3000 php_value max_input_vars 100000 php_value memory_limit 9024M php_value post_max_size 9024M php_value session.gc_maxlifetime 1440 php_value session.save_path "/var/cpanel/php/sessions/ea-php74" php_value upload_max_filesize 9024M php_flag zlib.output_compression Off </IfModule> # END cPanel-generated php ini directives, do not edit RewriteCond %{HTTP_REFERER} !^http://aleva.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://aleva.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://aleva.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://aleva.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://alicehelenar.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://apimeuchat.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://apimeuchat.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://clinimessias.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://clinimessias.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://cmmozart.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://cmmozart.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://faiser.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://faiser.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://loja.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://loja.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalu.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalu.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalu.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalu.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalucineaacessorios.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://lojalucineaacessorios.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://lucinea.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://lucinea.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://lucinea.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://lucinea.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://marketing.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://marketing.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://mautic.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://mautic.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://medassef.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://medassef.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://medassef.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://medassef.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://meuzap.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://meuzap.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://n9n.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://n9n.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://n9n.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://n9n.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://novo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://novo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.cubosuite.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.cubosuite.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://pages.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://portainer.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://portainer.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://proposta.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://proposta.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://redirect.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://redirect.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://sitenovo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://sitenovo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://st.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://st.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://studio.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://studio.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.aleva.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.aleva.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.aleva.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.aleva.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alicehelenar.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.apimeuchat.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.apimeuchat.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.clinimessias.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.clinimessias.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.cmmozart.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.cmmozart.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.faiser.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.faiser.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.loja.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.loja.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalu.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalu.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalu.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalu.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalucineaacessorios.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lojalucineaacessorios.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lucinea.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lucinea.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lucinea.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.lucinea.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.marketing.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.marketing.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.mautic.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.mautic.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.medassef.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.medassef.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.medassef.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.medassef.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.meuzap.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.meuzap.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.n9n.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.n9n.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.n9n.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.n9n.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.novo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.novo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.cubosuite.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.cubosuite.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.pages.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.portainer.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.portainer.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.proposta.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.proposta.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.redirect.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.redirect.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.sitenovo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.sitenovo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.st.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.st.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.studio.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.studio.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://aleva.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://aleva.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://aleva.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://aleva.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://alicehelenar.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://apimeuchat.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://apimeuchat.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://clinimessias.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://clinimessias.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://cmmozart.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://cmmozart.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://faiser.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://faiser.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://loja.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://loja.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalu.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalu.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalu.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalu.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalucineaacessorios.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://lojalucineaacessorios.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://lucinea.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://lucinea.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://lucinea.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://lucinea.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://marketing.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://marketing.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://mautic.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://mautic.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://medassef.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://medassef.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://medassef.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://medassef.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://meuzap.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://meuzap.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://n9n.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://n9n.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://n9n.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://n9n.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://novo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://novo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.cubosuite.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.cubosuite.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://pages.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://portainer.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://portainer.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://proposta.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://proposta.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://redirect.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://redirect.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://sitenovo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://sitenovo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://st.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://st.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://studio.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://studio.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.aleva.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.aleva.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.aleva.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.aleva.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alicehelenar.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.apimeuchat.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.apimeuchat.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.clinimessias.com.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.clinimessias.com.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.cmmozart.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.cmmozart.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.faiser.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.faiser.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.loja.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.loja.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalu.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalu.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalu.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalu.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalucineaacessorios.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lojalucineaacessorios.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lucinea.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lucinea.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lucinea.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.lucinea.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.marketing.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.marketing.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.mautic.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.mautic.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.medassef.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.medassef.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.medassef.com.br.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.medassef.com.br.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.meuzap.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.meuzap.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.n9n.clinimessias.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.n9n.clinimessias.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.n9n.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.n9n.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.novo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.novo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.cubosuite.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.cubosuite.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.pages.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.portainer.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.portainer.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.proposta.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.proposta.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.redirect.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.redirect.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.sitenovo.cmmozart.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.sitenovo.cmmozart.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.st.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.st.kelartes.com.br$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.studio.kelartes.com.br/.*$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.studio.kelartes.com.br$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ https://www.google.com/ [R,NC]
đź’ľ Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/kelarte1/pages.cmmozart.com.br