Suppose,
My css file is hosted in https://cdn.domain.com/css/style.css
Now my main site is https://www.domain.com
Here I have a file in https://www.domain.com/scripts/source/link.php
and it only contains the URI of the cdn site:
A: https://cdn.domain.com/
Now, in my index file I want to include that css file but using the link.php file like:
B: <link rel="stylesheet" href="<? include 'scripts/source/link.php'; ?>css/style.css" />
I know the previous code won't work like
C: <link rel="stylesheet" href="https://cdn.domain.com/css/style.css" />
So to achieve C, what should be in A or in B?