Search code examples
github-pages

How to add .well-known on Github Pages files using html


I have a html website on github page, i want to deep link it with my app using .well-known file, the problem is github pages doesn't serve folders starting with a period (eg, .well-known), so I'm unable to verify my domain. I see this topic but it is not html i try to add include: [".well-known"] on _config.yml but it won't solve the problem, i there a solution to this on html.


Solution

  • This here is an answer but remember to remove the space inside _config.yml file make sure there is only 1 line of code like this include: [".well-known"] and not like this

    include: [".well-known"]
     
    

    Make sure you don't have even a white space like this

    include: [".well-known"]