The virtual path for the PPL application varies depending on how the index.html and web.config files are configured in the PPL installation directory.
To determine the virtual path:
- Navigate to the directory where the PPL application is installed.
- Open index.html in a text editor.
-
Find the value of the href attribute in the following line:
<base href="/">
- Open web.config in a text editor.
-
Find the value of the url attribute in the following line:
<action type="Rewrite" url="/PPL/" />
-
Check whether the href and url values match:
-
If the values match, then the virtual path is structured as follows:
/{IIS application name}/
For example, if the name of the PPL application in IIS is WebApp, then the virtual path would be the following:
/WebApp/
-
If the values do not match, then the virtual path is structured as follows:
{href value}{IIS application name}
For example, if the href value in index.html is /ppl/ and the name of the PPL application in IIS is WebApp, then the virtual path would be the following:
/ppl/WebApp
-