.html
URLs causing 404 errors in Webflow since it doesn't support .html
extensions..html
URL or use a wildcard (/(.*)\.html
→ /%1
) to redirect all at once, then save and republish the site.A 404 error when accessing a .html
version of a blog post URL in Webflow usually means that the .html
URL doesn't exist because Webflow doesn't use .html
file extensions. You need to set up a 301 redirect to handle those legacy URLs.
.html
at the end (e.g., /blog-post.html
)..html
(e.g., /blog-post
)./blog-post.html
/blog-post
.html
version are forwarded to the correct URL.If you have multiple blog post URLs ending in .html
, use a wildcard redirect:
/(.*)\.html
/%1
.html
from any path and redirects it.Webflow doesn’t use .html
URLs, and these will return 404 errors by default. Fix them by adding 301 redirects under Project Settings → Hosting, either for individual posts or with a wildcard redirect to handle multiples.