# TrackPro - Root .htaccess
# register.php ko hamesha ke liye block kiya gaya hai (public
# registration band hai - sirf admin/super-admin naye affiliates
# bana sakte hain). Agar ye file kabhi accidentally dobara upload
# bhi ho jaye, ye rule isay kisi bhi URL se access nahi hone dega.

<IfModule mod_authz_core.c>
    <Files "register.php">
        Require all denied
    </Files>
</IfModule>
<IfModule !mod_authz_core.c>
    <Files "register.php">
        Deny from all
    </Files>
</IfModule>