I attempted the below text, but I have no clue how to access the Backend folder on my Wix Blog :(. Any tips on coding for this Art History grad?
Hi,
Just wanted to contribute to this thread and say thanks for pointing us in the right direction - - to help others who may potentially come across this stumbling block - here is what you need to do.  Create a file called  http-functions.js  in your  Backend  folder of files.
Then copy this template and add your own text:
import {ok, notFound, serverError} from ‘wix-http-functions’;
// @see  https://www.wix.com/corvid/forum/community-discussion/adding-ads-txt-file
let adstxt = # Ads.txt  Add text here...
export function get_Adstxt(request) {
let options = {
“headers”: {
“Content-Type”: “text/plain”
},
“body”: adstxt
};
return ok(options);
}
You will then be able to access it on your site at eg.  http://yourwebsite.com/_functions/Adstxt
For the final step (you must do this) - in your settings - add a Redirect for  /ads.txt  to point to  /_functions/Adstxt
Then ad networks will find your file correctly - job done.


