Page 1 of 1

Add release version on url for webhelp responsive

Posted: Fri Apr 07, 2023 10:29 pm
by Sitrakar
I would like to know how to put the release version of my online help in the url like yours :
Image (here versions/25.0).
I'm using azure devops and git as a version control.
Best regards,
sitraka

Re: Add release version on url for webhelp responsive

Posted: Mon Apr 10, 2023 4:49 pm
by alin
Hello,
This depends on the location on the HTTP server where you deploy your WebHelp Responsive output corresponding to each product version. Please keep in mind that the configuration of the HTTP server and the way resources are organized on it are settings from outside WebHelp Responsive.
To achieve this structure you can deploy the WebHelp Responsive output corresponding to each version at the following location:

Code: Select all

{HTTP_SERVER_BASE_URL}/versions/{VERSION_NUMBER}/
For example, using the above convention you will obtain the following structure on your HTTP server:
  • http(s)://my-doc-server.example.com/versions/1.0/{webhelp-output-for-version-1.0}
  • http(s)://my-doc-server.example.com/versions/2.0/{webhelp-output-for-version-2.0}
  • http(s)://my-doc-server.example.com/versions/3.0/{webhelp-output-for-version-3.0}
Regards,
Alin

Re: Add release version on url for webhelp responsive

Posted: Mon Apr 10, 2023 4:59 pm
by Sitrakar
Thanks Alin,
I will try it