Search.../

protocol

Returns the protocol of the router request URL.

Description

Premium sites: Premium site protocol

Free sites: Free site protocol

Note: The above URLs are for a published site. When previewing your site, you will receive the Editor URL.

Type:

stringRead Only

Was this helpful?

Get the protocol of the router request's URL

Copy Code
1export function myRouter_Router(request) {
2
3 let protocol = request.protocol; // "https"
4
5}