Givecredit
New member
I have set up a tune in link for one radio boss station using the instructions provided below:
I now want to create 2nd tune in link for 2nd radioboss station from the same domain as i used above.(Sister station) Is this possible? If yes how do I do it?
Using your domain for tune in links
It is possible to use your own domain name for tune in links. For instance, your tune in link in RadioBOSS Cloud is https://c1.radioboss.fm:8123/stream, and you want give your listeners a link with your own domain that looks like this: https://www.myradio.com/listen.
To make this work, please configure a redirect on your web site.
Example: Apache server
Edit .htaccess file, add a line:
RewriteRule ^listen$ https://c1.radioboss.fm:8123/stream [R=302,L]
Example: PHP script
In this case, the link will look like https://www.myradio.com/listen.php
listen.php file contents:
<?php
header("HTTP/1.1 302 Moved Temporarily");
header("Location: https://c1.radioboss.fm:8123/stream");
?>
I now want to create 2nd tune in link for 2nd radioboss station from the same domain as i used above.(Sister station) Is this possible? If yes how do I do it?
Using your domain for tune in links
It is possible to use your own domain name for tune in links. For instance, your tune in link in RadioBOSS Cloud is https://c1.radioboss.fm:8123/stream, and you want give your listeners a link with your own domain that looks like this: https://www.myradio.com/listen.
To make this work, please configure a redirect on your web site.
Example: Apache server
Edit .htaccess file, add a line:
RewriteRule ^listen$ https://c1.radioboss.fm:8123/stream [R=302,L]
Example: PHP script
In this case, the link will look like https://www.myradio.com/listen.php
listen.php file contents:
<?php
header("HTTP/1.1 302 Moved Temporarily");
header("Location: https://c1.radioboss.fm:8123/stream");
?>