Move portfolio case studies to data-driven template system and archive old individual files

This commit is contained in:
Ovidiu U
2026-03-15 18:04:56 +00:00
parent ac917dbc0a
commit 28cd60a427
21 changed files with 1789 additions and 1188 deletions

View File

@@ -9,6 +9,12 @@ RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Portfolio index
RewriteRule ^portfolio$ /portfolio.php [L,QSA]
# Portfolio case study pages: /portfolio/{slug} → portfolio-page.php
RewriteRule ^portfolio/([a-z0-9\-]+)$ /portfolio-page.php?slug=$1 [L,QSA]
# Security headers
<IfModule mod_headers.c>
Header set X-Content-Type-Options "nosniff"