Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

github-pages

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.

like image 272
Amani Joseph Avatar asked Apr 27 '19 13:04

Amani Joseph


1 Answers

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"]
like image 53
Amani Joseph Avatar answered Sep 19 '22 13:09

Amani Joseph