← back to Embroideredwallpaper
fix: /about → history.html alias (was 404)
e0c81cb67ebcc4175315a67fdc0dd2182f32503a · 2026-05-20 00:18:15 -0700 · Steve Abrams
Files touched
Diff
commit e0c81cb67ebcc4175315a67fdc0dd2182f32503a
Author: Steve Abrams <steve@designerwallcoverings.com>
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 3ac868a..87aa904 100644
--- a/server.js
+++ b/server.js
@@ -207,6 +207,9 @@ app.get(['/about', '/history'], (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'history.html'));
});
+// /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: *
← 822dd85 make server.js self-contained — gate _shared/admin-catalog b
·
back to Embroideredwallpaper
·
add: pre-stage Meta Pixel snippet (placeholder; flip via _dw d1aa66b →