- open: How to Learn Polish Fast | Language Quest Blog | Learn Polish Fast
- click on post (see url)
- for example this post: How to Learn Polish Fast: Practical Tips for Beginners | Learn Polish Fast
- gets redirected to https://language-quest.top/post/how-to-learn-polish-fast
- but sometimes it redirects to How to Learn Polish Fast: Practical Tips for Beginners | Learn Polish Fast correctly (it seems to work when click directly on the url when linked on another site)
Why is this happening?
The url is correct when i click on it.
This is my astro js config
export default defineConfig({
site: "https://language-quest.top/blog",
base: "/blog",
integrations: [tailwind(), mdx(), sitemap(), icon(),sitemap(), playformCompress()],
image: {
service: { entrypoint: 'astro/assets/services/sharp' },
},
});
And this is my netlify.toml
[[redirects]]
from = "/blog/*"
to = "https://language-quest-blog.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/polish-noun-cases/*"
to = "https://polish-noun-declension.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/polish-verb-conjugation/*"
to = "https://polish-verb-conjugation.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/app/*"
to = "https://language-quest.netlify.app/:splat"
status = 200
force = true
I put this netlify.toml file in my main repository, do i need to add it to each repo?
I have multiple separate repositories that should be in subfolders. What may be wrong with my setup?