# Isolated Free Golden Ticket staging — static only, no site router
DirectoryIndex index.html
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /staging/FREE_GOLDEN_TICKET_v1/
# Serve directory as index.html (prevent fall-through to site /index.php)
RewriteRule ^$ index.html [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ - [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+)/$ $1/index.html [L]
</IfModule>
# Deny parent inheritance of PHP handlers where possible
<IfModule mod_php.c>
  php_flag engine off
</IfModule>
