Denermisiniz

[CODE]
Options -Indexes

order deny,allow
deny from all
allow from IP_ADRESI

RewriteEngine on

RewriteRule ^robots.txt robots.php [L,NC]
RewriteRule ^sitemap.xml sitemap.php [L,NC]
RewriteRule ^(/?)$ kontrol.php?page=home&id=$1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ kontrol.php?path=$1 [NC,L,QSA]

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
[CODE]