← back to Wallpaperglossary
Add clean /privacy route (AdSense URL consistency)
abe210f90707ff54288de73392c92a8d9e3fc486 · 2026-09-10 11:51:30 -0700 · Steve Abrams
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit abe210f90707ff54288de73392c92a8d9e3fc486
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Thu Sep 10 11:51:30 2026 -0700
Add clean /privacy route (AdSense URL consistency)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
server.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/server.js b/server.js
index c61d60b..987df42 100644
--- a/server.js
+++ b/server.js
@@ -10,6 +10,7 @@ app.use((req, res, next) => {
});
app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
app.get('/health', (req, res) => res.json({ status: 'ok', site: 'wallpaperglossary.com' }));
← e23b4d1 Add privacy footer link (AdSense discoverability)
·
back to Wallpaperglossary
·
(newest)