I have a NodeJS app deployed on Digital Ocean, with a domain attached to it.
The app is hosted under https://www.myapp.com
I would like to redirect https://myapp.com to https://www.myapp.com
However, The DNS is managed by Digital Ocean. I can add records, but the record “name” is automatically pre-fixed with www.myapp.com
.
So how can I achieve this redirect?
Thank you, Klaas
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Hi there,
I believe that this should be doable as you are already using DigitalOcean for your DNS management:
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
app.use((req, res, next) => {
if (req.hostname === 'example.com') {
return res.redirect(301, `https://www.${req.hostname}${req.url}`);
}
next();
});
// Your other routes and middleware go here
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
In this example, we create a middleware that checks if the incoming request’s hostname is example.com
. If so, it redirects the request to www.example.com
with a 301 redirect status code.
Let me know how it goes!
Best,
Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.