I need to be able to modify the HTML headers for an events page registration form on a Wix website. I cannot do this through the Wix editor since the page is automatically created through the Wix events application and thus does not show up in the pages listing in the editor. Thus, there is no access to control settings for the page SEO, password protection, etc. for that specific URL. The URL for the page has the form https://www.domain-name.com/events/event-name. Since I would like to prevent this URL from being crawled by searched engines and also have a password protected page on the website which links to this URL, I need to add a noindex header.
From what I could gather from the API reference, this header could be added using the router or router response functions in the API for a router or dynamic page. The URL is formatted with a prefix (“events”) so I think this could be implemented with that function. I just need some assistance to get me started with the code. So my question is what code could I put in a router.js file which could match the events pages with that prefix? And is there anything else I would need to add to the backend or the code on that specific page so that I could add the noindex tag.
I think that I need to add something like the following to the router.js file:
export function myRouter_Router(request)
{ let headOptions = {
“noIndex”: true,
}};
I just need to know how to match that prefix with the router function to be able to implement this. Alternatively, if there is a simple way I could password protect a page using Wix code (not requiring users to register), that would be a another option.