Files
C_UAS_WEBGIS_AndrieWijaya_D…/WebgisPovertyMapping/.htaccess
T
2026-06-11 18:14:21 +07:00

19 lines
508 B
ApacheConf

# WebGIS Poverty Mapping - Apache hardening
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
# Test scripts are for local CLI verification only.
# They must not be executable from a browser.
RewriteRule ^tests(/|$) - [F,L]
# Runtime/session scratch data must not be browsable.
RewriteRule ^tmp(/|$) - [F,L]
# Local agent/tooling metadata is not part of the application.
RewriteRule ^\.claude(/|$) - [F,L]
RewriteRule ^\.superpowers(/|$) - [F,L]
</IfModule>