Full website with security hardening: - Redesigned sections: hero, services, capabilities, clients, partners, stats, about, workflow, contact - Contact form fixed (variable names, XSS sanitisation, rate limiting, open redirect removed) - .htaccess with security headers (CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy) - error_log blocked from public access - Robots.txt corrected to allow JS/CSS for SEO rendering
9 lines
287 B
Plaintext
9 lines
287 B
Plaintext
|
|
RewriteEngine on
|
|
RewriteCond %{HTTP_HOST} ^provoc\.ug$ [OR]
|
|
RewriteCond %{HTTP_HOST} ^www\.provoc\.ug$
|
|
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
|
|
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
|
|
RewriteRule ^(.*)$ "http\:\/\/provocgroup\.com\/$1" [R=301,L]
|
|
|