You can deploy blog posts from Engyne on your domain in a jiffy!
There are 2 ways to do this:
-
As a subfolder (Recommended): This setup lets you combine both Framer and Engyne on the same domain. For example, you can have your landing page at mywebsite.com be from Framer and all the blog pages be from Engyne as website.com/blog/. Having a subfolder is extremely useful for SEO because as your posts get more traffic from Google, the rest of your site, especially your landing page will start treading higher in rankings.
-
As a subdomain: This will deploy Engyne as blog.yourwebsite.com. Your main website will stay with Framer at mywebsite.com. This setup does not interfere with any other hosting services you have on your domain or other subdomains.
By deploying as a subfolder, you get to have the best of both worlds. You get to keep your Framer pages, i.e. landing, about, features pages etc. but also host Engyne pages as your blog. This is what it looks like:
.png)
Engyne deployment as a subfolder
The traffic first comes to Engyne, using the rules defined in the Deployment
, we can send it to either your Framer pages or Engyne.
To deploy Engyne as a subfolder, first, you need to connect your domain to Engyne, then use rerouting rules in Deployment
to route specific URLs to the Framer site.
Connect your domain to Engyne
- In your DNS manager, add a new record.
- In the "Type" dropdown menu, select "CNAME".
- In the "Host" field, use "@" (without the quotes).
- In the "Value" field, enter "cname.engyne.ai" (without the quotes).
- Click the "Save All Changes" button to add the CNAME record.
With this CNAME added, head over to your Engyne project:
- Navigate to your project > Settings > Deployment
- Add your domain in the Custom Domain and click Connect
- If everything goes well, the domain will show a connected sign. Sometimes the DNS changes can take a few hours so if it doesn't immediately, check back in an hour.
Now your domain should show Engyne pages only. In the next step, we will route specific pages to Framer while keeping the Engyne posts intact.
Set up routes to your Framer site
In order to route pages to your Framer project, we will use the Framer-hosted URL, e.g. <name>.framer.app
. Find your Framer URL by:
- Login to Framer and navigate to your project
- Click Settings on the top right > Domains > Base Domain. Note down your
<name>.framer.app
. This is your Framer-hosted URL.

Alt text
Now that you have the Framer URL, you can set up deployment rules in Engyne:
- Open up your Engyne site from the dashboard
- Click
Settings
>Deployment
- Under Route Pages, you can list what slugs will route to which URLs in Framer. Make sure to use your Framer-hosted URL in the Destination.
Simple usage
You can use one-off rules like below to reroute individual pages like the landing page, about us etc.
/
→ https://lime-run-895725.framer.app
This will route anyone coming to /
to your Framer site's /
page.

Alt text
Advanced usage
If you have a large number of pages under a path and don't want to write reroute rules one-by-one, you can use the wildcard pattern to reroute all of them in one go.
/resources/*
→ https://lime-run-895725.framer.app/resources/$1

Alt text
Congratulations! Now if you try going to your domain, you will see at /
and /features
it's your Framer site loading, any other URL will bring up your Engyne posts.
How to deploy Engyne as a subdomain for a Framer site
You can also connect Engyne to a subdomain like blog.mywebsite.com
to your domain by following these steps:
.png)
Engyne deployment as a subdomain
- In your DNS manager, add a new record.
- In the "Type" dropdown menu, select "CNAME".
- In the "Host" field, use "blog" (without the quotes). You can specify a different name here instead of "blog" to deploy the pages there, e.g. "resources".
- In the "Value" field, enter "cname.engyne.ai" (without the quotes).
- Click the "Save All Changes" button to add the CNAME record.
With this CNAME added, head over to your Engyne project:
- Navigate to your project > Settings > Deployment
- Add your domain in the Custom Domain and click Connect
- If everything goes well, the domain will show a connected sign. Sometimes the DNS changes can take a few hours so if it doesn't immediately, check back in an hour.
Now your domain should show Engyne pages only. In the next step, we will route some pages to Framer while keeping the Engyne posts intact.
On this page