[object Object]

← back to 1960swallpaper

fix: /about → history.html alias (was 404)

b3eec39d12eac569f1f54b116915d0c1bcd2e4a9 · 2026-05-20 00:18:15 -0700 · SteveStudio2

Files touched

Diff

commit b3eec39d12eac569f1f54b116915d0c1bcd2e4a9
Author: SteveStudio2 <stevestudio2@SteveStacStudio.lan>
Date:   Wed May 20 00:18:15 2026 -0700

    fix: /about → history.html alias (was 404)
---
 server.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/server.js b/server.js
index 4e99994..dada00f 100644
--- a/server.js
+++ b/server.js
@@ -204,6 +204,9 @@ app.get('/sample/:handle', (req, res) => {
   res.redirect(302, p.product_url || `${DW_SHOPIFY}/products/${encodeURIComponent(p.handle)}#sample`);
 });
 
+// /about → served by the "short history" page (no dedicated about.html exists)
+app.get('/about', (req, res) => res.sendFile(path.join(__dirname, 'public', 'history.html')));
+
 // sitemap.xml + robots.txt for SEO
 app.get('/robots.txt', (req, res) => {
   res.type('text/plain').send(`User-agent: *

← 325875c make server.js self-contained — inline admin-catalog (kamate  ·  back to 1960swallpaper  ·  add: pre-stage Meta Pixel snippet (placeholder; flip via _dw 8a905be →