Initial commit: UK Data Services website

This commit is contained in:
Peter
2025-06-07 10:53:32 +01:00
commit 3e9968f1b4
63 changed files with 6597 additions and 0 deletions

16
.htaccess Normal file
View File

@@ -0,0 +1,16 @@
# Minimal .htaccess for testing
RewriteEngine On
# Basic security
<FilesMatch "\.(htaccess|htpasswd|ini|log)$">
Require all denied
</FilesMatch>
# Disable directory browsing
Options -Indexes
# Basic headers (if mod_headers is available)
<IfModule mod_headers.c>
Header always set X-Content-Type-Options nosniff
Header always set X-Frame-Options DENY
</IfModule>